Nombre aléatoire Android Studio entre 1 et 10

int max = 10;
int min = 1;
random.nextInt(max - min + 1) + min
Glorious Gecko