The 'for' statement

Hi, I need a solution to this simple problem.

var myName:String = “Pink Floyd Sound”;
var i:Number;

myFig = new Array();
for(i=0;i<=10;i++) {
myFig * = myName;
trace(myName*);
}

I want to display the string text 10 times using the for loop. I did this, and all I get is undefined.