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 Collections Build a Grocery List Program Working with Hashes That Contain Arrays

Ketan Parikh
Ketan Parikh
2,222 Points

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

shopping_list.rb
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
Devin Scheu
66,191 Points

Try:

grocery_list['items'].push(grocery_item)
Ketan Parikh
Ketan Parikh
2,222 Points

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

Alan Matthews
Alan Matthews
10,161 Points

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