Skipping Over Branches // Help Me Please

What does the choice look like?

You’re using all if’s when you should be using if, elif, and else. “if” should only be the first one, “elif” in the middle, and “else” always last by itself.

if (order_dinner is “Say nothing, it’ll be fine”){

} elif (order_dinner is “Interrupt him and say what you want”){

} else {

}

More about the if/elif/else here: HOW TO: Remember Past Choices (if/elif/else)