Loop

Gretings…

I have some problem here.

for (i = 1; i < 10; i++){
trace(i);
imageLoader.x = 30 * i;
imageLoader.y = 30 * i;

addChild(imageLoader);
}

what this loop do is add only one imageLoader…insted of adding 10 ?

Can someone tell me why please?

Thanks in advance.