// The prompt() function displays a pop-up box with a message.
// Whatever the user types is stored in the 'userName' variable.
let orderItem = prompt("Welcome to our cafe! What would you like to order? ");
// Now we can use that variable to confirm the order.
console.log("Great choice! So you'd like to order " + orderItem + ". Coming right up!");