Which line of code will generate a random integer between 7 and 77?

rng.nextInt(7, 77);
rng.nextInt(77) + 7;
rng.nextInt(71) + 7;
rng.nextInt(77 + 7);

Relax

Respuesta :

Second one, but i am not sure. I think i recall correctly