I have an object that gets properties added in this sequence.

Home
School
living
status
sound
Memory

When I loop through the object they don't come out in that sequence.

data is the object

for (var i:String in data)
{
trace(i + ": " + data[i]);
}
Is there a way to sort it maybe?