Question: What code should go in line 3?
- `int[][] array = new int[][];`
- `int[][] array = new int[3][3];`
- `int[][] array = new int[2][2];`
- `int[][] array = [][];`
Answer: The correct answer of the above question is Option B:`int[][] array = new int[3][3];`