Skip to content

Instantly share code, notes, and snippets.

@janetferguson
Created April 14, 2015 02:49
Show Gist options
  • Save janetferguson/e22175c5071181bb8a49 to your computer and use it in GitHub Desktop.
Save janetferguson/e22175c5071181bb8a49 to your computer and use it in GitHub Desktop.
Exercise 23
def fav_foods
food_array = []
3.times do
puts "Name a favorite food"
food_array << gets.chomp
end
p food_array
puts "Your favorite foods are #{food_array.join(", ")}."
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment