Question: What will be the output of the following code snippet? var myArray1 : Array = new Array("One", "Two", "Three"); var myArray2 : Array = myArray1; myArray2[1] = "Four"; trace(myArray1);
A
B
C
D
One,Two,Three
B
Four,Two,Three
C
One,Four,Three
D
Two,Three,Four
Note: Not available