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 trialSimon Goldman
1,028 Pointsshopping list
not sure where my code is wrong??
def create_shopping_list
end
create_shopping_list = ('title: ' "Grocery List", 'items: ' [])
1 Answer
Stefan Frank
5,990 PointsHi Simon,
Your job here is to modify the method in a way, that the method returns the hash. Right now you create a new variable and assign it to the hash. You need to create the hash inside of the method.
Here is an example:
def create_shopping_list
Hash["title" => "Grocery List", "items" => []]
end