Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ketan Parikh
2,222 PointsI am not sure why this is wrong
Please tell me what is wrong in my solution. I tested this in rubymine and it shows the grocery_list hash properly. I need to move forward but until I finish this I cannot, so please help me with the solution here.
grocery_list = { 'title' => 'Grocery List', 'items' => [] }
grocery_item = { 'title' => 'Bread', 'quantity' => 1 }
for i in grocery_item.each_key{|key|}
grocery_list['items'].push(i)
end
2 Answers

Devin Scheu
66,191 PointsTry:
grocery_list['items'].push(grocery_item)

Alan Matthews
10,161 PointsYou can also just do:
grocery_item.each_key do |key|
grocery_list['items'].push(grocery_item)
end
I don't think for loops are really used in Ruby all that much.
Ketan Parikh
2,222 PointsKetan Parikh
2,222 PointsThanks that worked. I guess I was over analyzing the question. It was just as simple as your solution or using <<. They are asking how can you add elements to an array.