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 trialKetan 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.