Easy way to dynamically create many movie clips (200+)? [renamed]

i have a movie clip mcParent. in this mc i need to create many movie clips (mc001, mc002, mc003,… mc200).
i don’t know other way than:

var mc001:MovieClip = mcParent.createEmptyMovieClip ("mc001", mcParent.getNextHighestDepth());
mc001.loadMovie ("001.jpg");

but it’ a small problem, i need to write 200 lines.

I can’t find a way to put that into a loop. My problem is here: “var mc001:MovieClip = …”