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