Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Loi Tran
9,053 Pointsretrieve the key 'name' from the hash 'contact'. Correct?
def get_name contact_list = [] contact = {"name" => "", "phone_number" => "" } name = contact_list(contact["name"]) return name end
I'm confused what its asking me to do. That's what it sounds like to me.
2 Answers

melissaorgill
Front End Web Development Techdegree Student 11,136 PointsHi Loi
The quiz is asking you to assign the value of the key name to return value of the method get_name(). To do that you will just need to put the method in the contact hash.
contact_list = []
contact = {"name" => "get_name()", "phone_number" => "" }
Happy coding!

Loi Tran
9,053 PointsThanks Melissa, It seems so easy when you put it that way. lol I kept trying to do other things. haha.