// Pretty standard message. Greetings from the States!
{
Debug.Log("Hello Player! Welcome to Number Wizard.");
Debug.Log("Let's start by picking a number!");
Debug.Log("The highest number can be: " + max);
Debug.Log("The lowest number can be: " + min);
Debug.Log("Is your number higher or lower than: " + guess);
Debug.Log("Press the up arrow key if higher. Press the down arrow key if lower. Press the enter key if correct.");
max = max + 1;
}