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 trialAlphonse Cuccurullo
2,513 PointsFor some reason it isnt going through for me on line 24 care to correct my syntax?
def create_list
print " Enter your list name "
name = gets.chomp
hash = {"name" => name, "items" => Array.new}
return hash
end
def add_item
print" enter your item:"
item = gets.chomp
print"Enter amount:"
quantity = gets.chomp
stuff = {"item" => item, "quantity" => quantity}
return stuff
end
list = create_list()
puts list.inspect
list.push(add_item())
puts add_item.inspect
1 Answer
Steve Hunter
57,712 PointsHi there,
I think the issue is where you are pushing the hash returned from add_item
.
That should go onto the array inside the list called items
:
list['items'].push(add_item())
Let me know if that helps.
Steve.