## Describe the solution you'd like ```ruby # bad (0..8).map { |i| i } 0.upto(8).map { |i| i } # good Array.new(9) { |i| i } ```