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

Tina Maddox
Tina Maddox
28,102 Points

The item list will not print.

Hello Ruby community, I cannot figure out why the item list will not print. I appreciate your input!

Thanks in advance :)

def create_list
    print "What is the list name? "
    name = gets.chomp

    hash = { "name" => name, "items" => Array.new }
    return hash
end

def add_list_item
    print "What is the item called? "
    item_name = gets.chomp

    print "How many? "
    quantity = gets.chomp.to_i

    hash = { "name" => item_name, "quantity" => quantity }
    return hash
end

def print_list(list)
    puts "List: #{list['name']}"
    puts "----"

    list["items"].each do |item|
        puts "Item: " + item['quantity'].to_s
        puts "----"
    end 
end

list = create_list()
puts list.inspect
list['items'].push(add_list_item())

puts list.inspect

print_list(list)

1 Answer

Tina Maddox
Tina Maddox
28,102 Points

I figured it out. I will leave it up in case someone else is having difficulty.
I had left out a line of code #line26 puts "Quantity:" + item['quantity'].to_s :(

def print_list(list)
    puts "List: #{list['name']}"
    puts "----"

    list["items"].each do |item|
        puts "Item: " + item['name']
        puts "Quantity: " + item['quantity'].to_s
        puts "----"
    end 
end