public ArrayList roll() { for (int i = 0; i < 6; i++) { dice.add((int) (Math.random() * 6) + 1); } return dice; }