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 Hash and Array Iteration

Jeremiah Barro
Jeremiah Barro
5,872 Points

Why is this not an acceptable answer??

Seems to work. What am I missing?

contact_list.rb
contact_list = [
  {"name" => "Jason", "phone_number" => "123"},
  {"name" => "Nick", "phone_number" => "456"}
]
contact_list.each do |x|
  if x.class == Hash
    x.each do |key, value|
    contact = value
    print contact
    end
  end
end

1 Answer

Clayton Perszyk
MOD
Clayton Perszyk
Treehouse Moderator 48,723 Points

You need to change variable x to contact as per the instructions. Then you just access the name and phone number with a symbol or string. you dont need the second loop or to check if it's a hash.