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 Collections Build a Grocery List Program Create a Method That Returns a Hash

Ruby Methods

Please guys kindle help me with this Create a method named "create_shopping_list" that returns a hash. It does not need to ask for a name or get anything from standard input.

shopping_list.rb
def create_shopping_list
  return hash
end

2 Answers

William Li
PLUS
William Li
Courses Plus Student 26,868 Points

Hi there.

Writing hash by itself doesn't create a new Hash in Ruby. There're couple ways to do it here.

def create_shopping_list
  return {}
end
def create_shopping_list
  return Hash.new   # create new instance of Hash
end

Hope it helps.

Thank you Williams

You have to initiate new hash by like this def create_shopping_list return Hash.new end this method will create new empty hash for you can add keys and values in it later on.