почему не проходит по 2 3 параметру?
package com.javarush.task.pro.task05.task0511;
import java.util.Scanner;
/*
Создаем двумерный массив
*/
public class Solution {
public static int[][] multiArray;
public static void main(String[] args) {
Scanner s1 = new Scanner(System.in);
int N = Integer.parseInt(s1.nextLine());
multiArray = new int[N][];
for (int i = 0; i < N ; i++) {
int n = Integer.parseInt(s1.nextLine());
multiArray[N] = new int[n];
}
}
}