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 trialBrad Givens
6,621 PointsAssigning method return value to hash value pair
Trying to use the existing get_name method and its return value to add it to the second key, value pairing of the Hash. Tried using push and '<<' but can't seem to get it working.
contact_list = []
contact = {"name" => "", "phone_number" => "" }
contact['phone_number'].get_name
1 Answer
Steve Hunter
57,712 PointsHi there,
You want to assign the returned value from get_name
into the name
key.
Within contact
replace the assignment of ""
into name
with the get_name
call instead. Literally, delete ""
and replace with get_name
.
Steve.
Brad Givens
6,621 PointsBrad Givens
6,621 PointsThanks again, overthinking the question as usual!