After this runs, what is the value of arr[0]?int[] arr = { 1, 2, 3 }; int[] copy = arr; copy[0] = 42; Console.WriteLine(arr[0]);