how to make highscore & score in quiz game with different scene,how to make highscore in different scene

can you help me plz

Save the high score in PlayerPrefs: PlayerPrefs.SetInt("HighScore", highscore);
And get it back: int highscore = PlayerPrefs.GetInt("HighScore", defaultValue);