public class TokenPass { private int[] board; private int currentPlayer; /** Creates the board array to be of size playerCount and fills it with * random integer values from 1 to 10, inclusive. Initializes currentPlayer to a * random integer value in the range between 0 and playerCount-1, inclusive. * @param playerCount the number of players */ public TokenPass(int playerCount) { board = new int[playerCount]; for(int i=0; i