What is the result of executing this Java code?
int[][] table = new int[3][10];
Initializes a list of three arrays, each with ten elements
Creates a two-dimensional array with 3 rows and 10 columns
Allocates memory for a 3x10 matrix without initializing values
Declares a table with 3 columns and 10 rows