var userName = prompt();
var aliceName = String(userName);
var bobName = String(userName);
if(userName == aliceName || bobName){
console.log("Welcome, " + userName + "!");
} else {
console.log("Sorry, you are not Alice or Bob");
}
Create a program that asks users for their name and only greets them if they are either Alice or Bob.