Skip to content

Instantly share code, notes, and snippets.

@Phoenix23A
Created February 20, 2017 19:11
Show Gist options
  • Save Phoenix23A/19d0c25c653b2bdb0b91b88d590d0cb3 to your computer and use it in GitHub Desktop.
Save Phoenix23A/19d0c25c653b2bdb0b91b88d590d0cb3 to your computer and use it in GitHub Desktop.
def fav_foods
food_array = [] # instead of the brackets, you can also use Array.new to make a new empty array
end
3.times do
puts "Name a favorite food."
food_array << gets.chomp
puts "Your favorite foods are #{food_array.join("fav_foods")}."
#Method fav_foods#
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment