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 Blocks Working With Blocks Implementing Block Methods

Elias Schroons
Elias Schroons
5,170 Points

There's a bug in the MyArray class! Modify the each method to return the member array.

Hi, I can't for the life of me figure out what I'm doing wrong here.

According to other support threads, this code should work, but it doesn't.

It also seems that I'm entering it into a command-line like interface instead of a 'regular' code editor one.

class MyArray
  attr_reader :array
  def initialize
    @array = []
  end

  def push(item)
    array.push(item)
  end

  def each(&block)
    i = 0
    while i < array.length
      block.call(array[i])
      i += 1
    end
    return array
  end
end

1 Answer

Steven Parker
Steven Parker
229,732 Points

It looks like there may be a bug in the challenge. You might want to report it to the Support staff.

Jay McGavren
Jay McGavren
Treehouse Teacher

Elias Schroons looks like you notified support? Thank you! Our devs looked at it and your code should work as-is now. (Works for me, anyway.) Sorry for the trouble!

Steven Parker
Steven Parker
229,732 Points

Jay McGavren — much better now!

And it sounds like Elias Schroons should be getting an "Exterminator" :beetle: badge. :+1:

Elias Schroons
Elias Schroons
5,170 Points

Works for me, too.

Thanks guys!