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 trialGem Knight
4,779 PointsNeed Help
I need help with this question.
contact_list = [
{"name" => "Jason", "phone_number" => "123"},
{"name" => "Nick", "phone_number" => "456"}
]
contact_list.each do |contact|
contact = contact_list.each.inspect
print contact.inspect
end
3 Answers
Kourosh Raeen
23,733 PointsYou don't need to explicitly assign anything to contact. In each iteration of the loop contact will be one of the hashes in the contact_list array. You need to print the value of the name and phone_number keys of each hash by using square brackets after the name of the variable containing the hash, which is contact, and providing the name of the key inside the square brackets:
contact_list = [
{"name" => "Jason", "phone_number" => "123"},
{"name" => "Nick", "phone_number" => "456"}
]
contact_list.each do |contact|
puts contact['name']
puts contact['phone_number']
end
Alistair Mackay
7,812 PointsBingo thanks Kourosh,
something like this:
string = "hello world"
Kourosh Raeen
23,733 PointsYes, except I'm not sure why you have the ".
Alistair Mackay
7,812 PointsYeah me neither, it seems to be linked with anything that has speech marks (" "). But thanks, I think I'm getting the hang of this now.
Gem Knight
4,779 PointsGem Knight
4,779 PointsThanks
Gem Knight
4,779 PointsGem Knight
4,779 PointsThanks
Alistair Mackay
7,812 PointsAlistair Mackay
7,812 PointsYeah, this totally helped. Just by the by how do you link your code to replies?
Kourosh Raeen
23,733 PointsKourosh Raeen
23,733 PointsAlistair Mackay - Use three backticks, ```, followed by the name of the language, python for example, then another three backticks after the last line of code.