Adding properties to an object - specifically Arrays

Hi I’m fairly new to AS3. In AS2 I often used objects to store properties so I can creatre them dynamically and refer to them later.

Sometime I use an array as a property. I am wondering if my method of doing this is the best way, or if AS3 has other methods that might be better suited.

In this case I have an object that stores properties like ID no. and I also want to store an array of sub properties which are in array. I am coding like this -

var o:Object = new Object();
dataStorageArray = new Array();

//fill data storage array then add as propert of object

o.dataStorage = dataStorageArray;

//then later get data by - 

requiredData = o.dataStorage[6]; //for example

Just wondering if there is a better way of doing this kind of thing in AS3