Hello everybody!

I need to load 100 instances of the same clip, everyone in a random position.
This script does not seem to work:

Code:
import flash.display.MovieClip;
var droplet: drop = new drop();
for (var n: int = 0; n < 100; n++) {
	droplet.name = "droplet" + n
	addChild(droplet);
	droplet.x = Math.random() * stage.stageWidth;
	droplet.y = Math.random() * stage.stageHeight;
}
Could anyone kindly suggest me the right way?
Thanks!