Направьте на мысль пожалуйста что нужно сделать.
package com.javarush.task.pro.task05.task0527;
/*
Подготовка Кибердракона
*/
public class Solution {
public static int[][] array = new int[5][];
public static void main(String[] args) {
for (int i = 0; i < array.length; i++) {
array[i] = new int[2 * 0 + 1];
for (int j = 0; j < array[i].length; j++){
System.out.print(array[i][j] + " ");
}
System.out.println();
}
}
}