21 lines
454 B
Ruby
21 lines
454 B
Ruby
shoppingList =[
|
|
"hummus",
|
|
"Avocado",
|
|
"ben n jerrys",
|
|
"marajuana",
|
|
"Guacamole",
|
|
strippers =
|
|
[
|
|
"candy",
|
|
"lollipop",
|
|
"jelly"]
|
|
]
|
|
shoppingList = gets.chomp.to_i.to_s
|
|
chosenItem = shoppingList[4]
|
|
chosen_Stripper = strippers[2]
|
|
|
|
|
|
puts "Want ot add an item to your Shopping list?"
|
|
puts "#{shoppingList}"
|
|
puts "The best thing to have in your tummy is #{chosenItem}"
|
|
puts "Take a wild ride with #{chosen_Stripper} in it"
|