Display PlayerPrefs.GetInt?

Hello. If I am using PlayerPrefs.GetInt, how do I display that integer as a GUI label? Also, how can I store/display multiple copies of the same string (for a local high score table)? Thanks

var label = PlayerPrefs.GetInt("intName").ToString();
GUI.Label(new Rect(x, y, width, height), label);

should do it.