[AS3] Creating n Instances of a Class

Hi,

i learned something about classes, constructors and instances. The following Problem occurred to me then:

Let there be a class, MyClass, that extends the MovieClip class, and puts, say, a circle on the stage, x-Position, y-Position and radius being constructors’ parameters.

For example

new Circle:MyClass = new MyClass(100,100,50);
addChild(Circle);

Puts a circle at 100, 100 with the radius of 50. How would i write a code, that creates any given number of instances with specified parameters, for example 100 Circles, all radius 5, but their Position altered slightly?

Gz TWERP