I need to create a random number between 80 and 120, I was given the line
int tempF = (-17 + (int) (Math.random() * ((-20 - (-17)) + 1)));
and I added the line
Random generator = new Random();
above it, but I'm not sure where to go from here?