не могу понять что тут не такpublic class Solution {
public static int[][] result = new int[2][];
public static int[] array = new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11};
public static void main(String[] args) {
if (array.length % 2 != 0) {
result[0] = Arrays.copyOfRange(array, 0, array.length/2+1);
result[1] = Arrays.copyOfRa