I have to make an array copy and the second one have to repeat 3 times as array1 = [1,2,3], arrayB =[1,2,3,1,2,3,1,2,3], what I have so far:
public static void repeat(int[] array)
{
...