# Else Command
The Else command is used with the If command. The else command runs if the if command is false.

```
if(1 == 2){
    log("Ummm.");
};
else{
    log("Else");
};
```