V.simple array understanding

Just getting my head around simple arrays. I mean simple arrays using flash.

What am I doing wrong! - All I am doing is trying to perform an action on all the elements in the array.



myArray = new Array("one", "two", "three", "four");
	  myArray = _root._rotation = 45;


I can see the issue, basically everything on the _root timeline would be rotated by 45 degrees

So how do I refer to anything in the actual array itself, i also tried.



myArray = new Array("one", "two", "three", "four");
		myArray = _root.myArray_rotation = 45;


Any overview would help, sorry for the simplicity of this.

T