String[] a = {"a","b","c"}; String[] b = {"A","B","C"}; int[] c = {1,2,3}; for(int i = 0;i < a.length;i++){ System.out.println(a[i] + b[i] + c[i]); }