Случайное число в конкретном диапазоне Kotlin

val rnds = (0..10).random() // generated random from 0 to 10 included
MadMan