mcpiroman
val rng = Random(0) generateSequence { rng.nextInt() }.take(10).toList()
Joffrey
List(10) { rng.nextInt() }