Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Loops Ruby Loops The Ruby Loop

Chester John
Chester John
336 Points

Errno::ENOENT: No such file or directory @ rb_sysopen - 1

loop is correct. but still giving me the above error? Thanks.

loop.rb
# write your loop here
numbers = []
number = 0
loop do numbers << gets.chomp.to_i
  number += 1
  if numbers.size == 3
    break
  end
end

1 Answer

You need to loop and then push the number in to the numbers array

numbers = []
number = 0
loop do 
  numbers << number
  number += 1
  if numbers.size == 3
    break
  end
end