void Update()
{
if (Input.GetKeyDown(KeyCode.UpArrow))
{
min = guess;
guess = (max + min) / 2;
Debug.Log("Higher? Is your number " + guess);
}
So, that returns “Higher? Is your number xxx”
What if I want is to say “Higher? Is xxx your number?” or “Higher? Is your number xxx?” with the question mark?
Simply put: how do you continue a string after a variable? Or does a variable always have to be at the end?