Display variable through GUI Text?

It’s simple things like this that get me stuck…lol

static var score = 0;

function Update () {
guiText.text = score;
}

Trying to get the GUI Text component to display the “score” variable.
At line 4 its says I can’t convert an integer to a string.

You need to add .ToString() to the end of guiText.text = score

Thanks