In an array you can find the fifth value by:
array[4]
But can you do the same for objects? For example if I have:
test =
{
tree: "epic",
town: "cool",
airport: "yay",
}
And then I want to use airport by its number, 3, how do I do that?