Enter the secret number when prompted.
The guess checking is not working. No message is displayed for the user to see if the number they are introducing is less or greater than the secret number. So I clicked on the green flag to see it work. Then I read the script and as I was analyzing the conditions, I saw that the same condition was repeated on both "ifs". Both would check that the secret number was less than the guess and never if it was greater than. So I changed the second "if" to greater than and the program started to work.