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 trialElias Schroons
5,170 PointsThere'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
231,236 PointsIt looks like there may be a bug in the challenge. You might want to report it to the Support staff.
Jay McGavren
Treehouse TeacherJay McGavren
Treehouse TeacherElias 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
231,236 PointsSteven Parker
231,236 PointsJay McGavren — much better now!
And it sounds like Elias Schroons should be getting an "Exterminator" badge.
Elias Schroons
5,170 PointsElias Schroons
5,170 PointsWorks for me, too.
Thanks guys!