+ 2
Else is useful to perform different actions if the condition isn't True, for example
if(1 < 0) {
// the condition is false then this code is not
// accessed
print("Hello")
} else {
// this section is Accessed so you can make
// something different
print("else entered");
}