public void Reset()
    {
        int currentScore = ScoreMaster.ScoreTotal(bowls);

        if (currentScore > highScore)
        {
            highScore = currentScore;
            PlayerPrefs.SetInt(highScoreKey, highScore);
            scoreDisplay.SetHighScore(highScore);
        }
        scoreDisplay.Reset();
        bowls = new List <int>();
    }