Почему не проходит последнее требование, вроде все правильно решил.
package com.javarush.task.pro.task05.task0504;
/*
Объединяем массивы
*/
public class Solution {
public static int[] firstArray = new int[]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
public static int[] secondArray = new int[]{10, 11, 12, 13, 14, 15, 16, 17, 18, 19};
public static int[] resultArray;
public static void main(String[] args) {
//напишите тут ваш код
resultArray = new int[20];
for (int x = 0; x < firstArray.length; x++){
resultArray[x] = firstArray[x];
}
for (int y = 0; y < secondArray.length; y++){
resultArray[y + 10] = secondArray[y];
}
for (int i = 0; i < resultArray.length; i++) {
System.out.print(resultArray[i] + ",");
}
}
}