Answer:
a. 0...5
Step-by-step explanation:
Given
randGen.nextInt(6)
Required
Determine the range of values
Using randGen object,
The syntax to generate a random integer is randGen.nextInt(n)
Where the range is 0 to

In this case;
n = 6
So, range is 0 to 6 - 1
Range: 0 to 5
Hence;
Option A answers the question