Take a look at this piece of the code:


// loop through number of times you rolled
for (int i = 0; i < diceRolls.length; i++)
{
diceOne[i] = r.nextInt(numArr.length);
diceTwo[i] =...