What you tried is possible only for value types. In Java arrays are reference types i.e. objects.
What you tried is not possible (as Gwyn explained).
On the other hand you could:
int[][] arrays = new int[4][5];
And then use: arrays[0]
, arrays[1]
.. instead od a
,b
.