public String[] fizzArray2(int n) { String[] a = new String[n]; for (int i = 0; i < n; i++) { a[i] = "" + i; } return a; }