What will the following code print?
int[] scores1 = { 1, 2, 3, 4, 5, 6};
int[] scores2 = { 0, 0, 0, 0, 0, 0};
System.arraycopy(scores2, 2, scores1, 3, 2);
for(int i : scores2) System.out.print(i);
Select 1 option
A. 123006
B. 000000
C. 000450
D. It throw an exception at run time.