Help me load many movie clip please!

Hi everybody,
I want to load many MC, here is my code:

var mc1 = “1.swf”;
var mc2 = “2.swf”;
var mc3 = “3.swf”;
myArray = new Array();
myArray.push(mc1, mc2, mc3);
for(var i=0; i<myArray.length; i++){
_root.loadMovie(myArray*);
trace(myArray*) ;
}

I want to the stage run 1.swf then 2.swf and then 3.swf…step by step…
But with this code, the Movie only run the last movie clip (3.swf). So how I can do to run it step by step. many thanks!