Using array to populate from 00 to 59

Hi guys, I’m trying to use array to create 00,01,02,03,04 … all the way to 59. Can anyone tell me what’s wrong with the code?

var myLabels_Min:Array = new Array(60);
for(var a=0;a<myLabels_Min.length;a++)
{
	if (myLabels_Min[a].length == 1){
		myMin.addItem( {label: "0" + a } );
	}else{
		myMin.addItem( {label: a } );
	}
}