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 One,Two,Three
B Four,Two,Three
C One,Four,Three
D Two,Three,Four
+ AnswerC
+ Report