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 trialBrian Patterson
19,588 PointsNot sure what is wrong?
Why is this wrong
grocery_item = { "item" => "Bread", "quantity" => 1, "brand" => "Treehouse Bread Company" }
if grocery_item.has_value?("Bread")
food = true
end
2 Answers
Kourosh Raeen
23,733 PointsYou're pretty close Brian. You just need to set 'food' as a new hash key in grocery_item with a value of true:
grocery_item = { "item" => "Bread", "quantity" => 1, "brand" => "Treehouse Bread Company" }
if grocery_item.has_value?("Bread")
grocery_item['food'] = true
end
John Shockey
45,061 PointsYou are close... you are setting a variable food to true. You need to add the key food to the hash with a value of true.
if grocery_item.has_value?("Bread") grocery_item.store("food", true) end
Brian Patterson
19,588 PointsBrian Patterson
19,588 PointsThanks to all for you comments