From 6b0ef740c949e3df28e819358e03a2cdd551604e Mon Sep 17 00:00:00 2001 From: Salome Wubeshet Date: Thu, 10 Aug 2017 09:19:23 -0700 Subject: [PATCH] Create random_menu.rb --- random_menu.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 random_menu.rb diff --git a/random_menu.rb b/random_menu.rb new file mode 100644 index 0000000..edc2881 --- /dev/null +++ b/random_menu.rb @@ -0,0 +1,10 @@ +adjectives = ["yummy", "soft", "delicious","creamy","crispy","juicy","ripe","bright","floral", "sweet"].shuffle +cooking_styles = ["steamed","pan-fried","grilled","bbq","broiled","scrambled","baked","carmalized","candied","hot"].shuffle +foods = ["clams","salmon","chicken","pork","lamb","eggs","brownies","banana foster","cheesecake","yams"].shuffle + + +10.times do |x| + +puts "#{x + 1}. #{adjectives[x]} #{cooking_styles[x]} #{foods[x]}" + +end