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 trialMarguerite Holden
6,075 PointsCan 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
grocery_list = { 'title' => 'Grocery List', 'items' => [] }
grocery_item = { 'title' => 'Bread', 'quantity' => 1 }
grocery_list = { 'items' => 'grocery_item' }
2 Answers
Alexander Davison
65,469 PointsTry 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
Perry Marquer
11,243 Pointsgrocery_list['items'].push(grocery_item)
Marguerite Holden
6,075 PointsThe idea of using push came to mind. I need to follow my intuition more. Thanks for your help!