I know how to put an array in order, but in this case I just want to see if it is in order. An array of strings would be the easiest, I imagine, and answer
Iterate over the objects and make sure each following element is >= the current element (or previous is <=, obviously) the current element.