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

Can someone tell me what I'm doing wrong here?

I,m supposed to add grocery_item hash to the items array inside the grocery_list hash

shopping_list.rb
grocery_list = { 'title' => 'Grocery List', 'items' => [] }
grocery_item = { 'title' => 'Bread', 'quantity' => 1 }
grocery_list = { 'items' => 'grocery_item' }

2 Answers

Try this instead:

grocery_list["items"].push(grocery_item)

Over here I'm getting the "items" key and pushing "grocery_item" to the end of the "items" array inside of "grocery_list".

Good luck! ~Alex

grocery_list['items'].push(grocery_item)

The idea of using push came to mind. I need to follow my intuition more. Thanks for your help!