How to dynamically create Object’s trough for loop?

[FONT=Arial]Hi,[/FONT]
[FONT=Arial]I want to dynamically create 10 Objects trough for loop. Each Object should have unique name.[/FONT]
[FONT=Arial]In previous version od AS you could sove this with these lines of code:[/FONT]


[FONT=Arial]for(var i:Number = 0; i<10; i++)[/FONT]
{
this["myObject" + i] = new Object();
}

How to do this in AS3?


[FONT=Arial]for(var i:Number = 0; i<10; i++)[/FONT]
{
var myObject:Object = new Object(); //How to setup uniqu Object name?
}

Thanks,