Write a class called Coffeeshop, which has three instance variables:
and four methods:
"This item is unavailable, sorry!""The #{item} is ready!". If the orders array is empty, return "No orders to fulfill!"Note: Orders are fulfilled in a FIFO (first-in, first-out) order.
cs1.add_order("hot cocoa") ➞ "Sorry, this item is unavailable."
# A Little Spice coffee shop does not sell hot cocoa
cs1.add_order("cinnamon roll") ➞ "Order added!"
cs1.add_order("iced coffee") ➞ "Order added!"
cs1.orders ➞ ["cinnamon roll", "iced coffee"]
# All current orders are listed.
cs1.fulfill_order ➞ "The cinnamon roll is ready!"
cs1.fulfill_order ➞"The iced coffee is ready!"
cs1.orders ➞ []
# All orders have been fulfilled
cs1.cheapest_item ➞ "lemon tea"
cs1.drinks_only ➞ ["hot chocolate", "lemon tea", "iced coffee", "vanilla chai latte"]N/A