Скала случайное число

val r = scala.util.Random
r.nextInt() //no max limit
r.nextInt(100) //max limit
HydroBrodo