public int[] fizzArray(int n) { int[] result = new int[n]; for (int x = 0; x < n; x++) { result[x] = x; } return result; }