Convert PlayerPrefs Int for GUI.Label

hi, I would like it to be printed in GUI.Label the value that is inside of a PlayerPrefs:

GUI.Label(new Rect(850, 400,30 , 20), PlayerPrefs.GetInt("Potion"));

The problem is that the GUI.Label only accepts values in “string”. How would I go to print the value equally?

I solved with .ToString();

GUI.Label(new Rect(*RECT*), PlayerPrefs.GetInt("Potion").ToString());