

What about ELSE?
ELSE gives the computer an alternative action.
IF this, THEN that, ELSE do something different.
`ELSE` is the backup plan. If the `IF` condition is not true, the computer will do the `ELSE` action instead.
Now the character will jump over obstacles, but `ELSE` it will just move forward. Try it out!
Instructions
IF Obstacle Ahead
THEN
Jump
ELSE
Move Forward

🚧