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

Jesse Fister
Jesse Fister
11,968 Points

loops in ruby

I don't quite understand the question... Using the loop construct, add the current value of number to the numbers array. Inside of the loop, add 1 to the number variable. Use the break keyword to exit the loop once the numbers array has 3 items.

I've started my code with:

loop do number + 1 break end

If someone could explain this question that would be great!

1 Answer

So you first start your loop. Then you put 'number' in the 'numbers' array using the 'push()' method. Then you check if your array has 3 objects in it using the 'if' conditional and the 'length' method on the 'numbers' array. If your array contains 3 objects you break. If not so you increment the 'number' variable by 1

# write your loop here
loop do
  numbers.push(number)
  if numbers.length() == 3
    break
  end
  number += 1
end