However, this code will have an error if the user enters a negative number (try it!). Before you set the beak and pause, you want to check if time is less than zero. The code below shows how to do this with an if-else statement. The keyword if is followed by a comparison in parentheses, time < 0. This comparison is a Boolean expression, which means that it is either true or false. If the comparison is true, the program runs all the lines of code inside the curly braces {} that follow the if. If the comparison is false, the program runs all the lines of code inside the curly braces that follow the else. Then the program moves on to the next line following the if-else statement. In this case, if time is less than zero, the program prints an error message. Otherwise, it turns the Finch for time seconds.