what will be the output? int arr[] = {5,4,6,2,9}; arr[1] = arr[0]*10; System.out.println(arr[0]);
40
4
5
50