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

I can't see anything wrong with this:

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

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

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



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

2 Answers

Maciej Czuchnowski
Maciej Czuchnowski
36,441 Points

Not sure why you would write it like this, but this is the correct answer:

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

Sorry, I was not very specific yesterday. My version gets an error saying "the has_value? method was not called.". Maybe it's a bug in the system. Your version works.

Thanks, Frank.