/* you need to extend this class to complete hw4 */ import java.util.*; public class Player { // constants static final int NUMDICE = 5; static final int NUMCATS = 10; // variables Random random; Die[] dice; int scores[]; /*------------------------------------------------------ Player constructor ------------------------------------------------------*/ public Player() { random = new Random(); dice = new Die[NUMDICE]; for ( int i=0; i