Is it possible to initialize and/or declare multiple arrays in the same line in Java?
ie.
int a, b, c, d, e = 4
works but
You are missing the new keyword Try this:
new
int[] a, b, c, d, e = new int[4];