void Start ()
{
Debug.Log("Hey heyyyyyy, gonna guess yo' number!!");
//print and debug log work pretty much the same way
//this gives us a little more flexability later in the course
Debug.Log("Think of a number between " + minguess + " and " + maxguess);
Debug.Log("Tell me... is your number higher or lower than 500?");
Debug.Log("(Push Up Arrow for higher, Down for lower, and push Enter if I got it right!)");
maxguess = maxguess + 1;
}