def scoreList(dielist):
    """ Given a roll of five dice, generate a list of scores for each
        possible category a user can select. This list is arranged in the 
        order that the scoreCard class expects the scores in the method
        displayPossibles and should not be modified """
    scoreList = [sumOfN(dielist, 1), sumOfN(dielist, 2), sumOfN(dielist, 3),
                 sumOfN(dielist, 4), sumOfN(dielist, 5), sumOfN(dielist, 6),
                 threeOfAKind(dielist), fourOfAKind(dielist),
                 fullHouse(dielist), smallStraight(dielist),
                 largeStraight(dielist), sumDice(dielist), yahtzee(dielist)]

    return scoreList

