Is there a quicker way to generate multiple Class instances?

This is how I create a Class instance of Container_, called “wall0”:
var wall0:Container_ = new Container_();

I need dozens of these, numbered sequentially. Is there a syntax available that would plug into a while statement? Like:

var w:Number = -1; while(w < 100){var (wall+[w]):Container_ = new Container_();}