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 Ruby Hashes Working with Hash Values

Brian Patterson
Brian Patterson
19,588 Points

Not sure what is wrong?

Why is this wrong

hash.rb
grocery_item = { "item" => "Bread", "quantity" => 1, "brand" => "Treehouse Bread Company" }

if grocery_item.has_value?("Bread")
  food = true
end

2 Answers

Kourosh Raeen
Kourosh Raeen
23,733 Points

You'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
Brian Patterson
Brian Patterson
19,588 Points

Thanks to all for you comments

You 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