Hi Greg, I also noticed the problem with continuous pressing of Higher or Lower. This is what I came up with as a solution to cover either button.
public void NextGuess()
{
if (max - min >= 0)
{
guess = Random.Range(min, max);
guessText.text = guess.ToString();
}
}