Loading 2 random movies at once

Is there a way to load 2 or more random movie clips? I can get one random movie to load but am having trouble getting the 2nd movieclip to load. The code Im using is below.

filename = ["1.swf", "2.swf", "3.swf", "4.swf", "5.swf", "6.swf", "7.swf", "8.swf", "9.swf", "10.swf", "11.swf"];
path = "buttons/";
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], movieTarget);


filename = ["1.swf", "2.swf", "3.swf", "4.swf", "5.swf", "6.swf", "7.swf", "8.swf", "9.swf", "10.swf", "11.swf"];
path = "buttons/";
h = filename.length;
j = Math.floor(Math.random()*h);
loadMovie(path+filename[j], movieTarget2);