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 trialChester John
336 PointsErrno::ENOENT: No such file or directory @ rb_sysopen - 1
loop is correct. but still giving me the above error? Thanks.
# 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
Paul Ogawa
6,570 PointsYou 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