(set: $correct to (random: 1, 100)) (set: $tries to 0) I am thinking of a number between 1 and 100. Guess the number, and I will tell you if your are correct, too high, or too low. See if you can guess the number in 7 turns or less! [[get started->tryAgain]](set: $tries to $tries + 1) (set: $guess to (num: (prompt: "Your guess", ""))) Try $tries: You said $guess (if: $guess < $correct)[ [[that is too low->tryAgain]] ](else-if: $guess > $correct)[ [[that is too high->tryAgain]] ](else:)[ [[that is correct! you win! It took $tries turns->begin]] ]