try
int[] a = new int[4], b = new int[4], c = new int[4], d = new int[4], e = new int[4];
You have to instantiate an array for each variable if you want to create five different arrays.
If you want to create one array and reference it from five variables Goran has the solution.