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 Loops Build a Simple Contact List Assigning Hash Values From Methods

I don't get what its asking me to do...

i don't understand what the challenge is

contact.rb
contact_list = []
get_name() = name
contact = {"name" => name, "phone_number" => "" }

1 Answer

Nathan Williams
seal-mask
.a{fill-rule:evenodd;}techdegree
Nathan Williams
Python Web Development Techdegree Student 6,851 Points

Hi Zachary,

I had to stare at the question for a few minutes, but it looks like they're wanting you to set the name key in the contact hash variable to the returned value of the get_name() method. You shouldn't have to create the get_name method, just assume that it exists.

Hope that helps!