Multiple Cases to If Else Statements

How would I make it so that i could have multiple correct password or cases to take someone to different Places.

password = inputName;
if (password == “Flash”) {
gotoAndPlay(“Scene 1”, 1);
} else {
gotoAndPlay(“Scene 1”, 5);
}

or if they entered in the password “BOB” it would take them somewhere else.