Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def fav_foods
  2. food_array = [] # instead of the brackets, you can also use Array.new to make a new empty array
  3. end
  4.  
  5. 3.times do
  6. puts "Name a favorite food."
  7. food_array << gets.chomp
  8. puts "Your favorite foods are #{food_array.join("fav_foods")}."
  9. #Method fav_foods#
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement