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 Keys

Simon Goldman
Simon Goldman
1,028 Points

hash

cant figure out how to add a new variable to this??

hash.rb
hash = { "name" => "Bread", "quantity" => 1, "calories" => 100 }
hash.has_key?("calories") 
hash.store("food" => "true")

1 Answer

Amir Eskandari
Amir Eskandari
9,153 Points

Hi Simon,

You are very close but your last line is much more complicated than necessary. You just need to assign the boolean value true to a new variable called "food", like so:

food = true

Also, wrap your two lines of code in an 'if' statement. Let me know if you need any more help!