which line of code shows how to create a finite sequence of the numbers 1 to 99 and then convert it into a list?
val lessThan99 = generateSequence(1){ if (it < 99) it + 1 else null }.toList().
val lessThan99 = generateSequence(1..9){ if (it < 99) it + 1 else null }.toList().
val lessThan99 = listOf{1..99}.asSequence().toList()
val lessThan99 = generateSequence(0){ if (it < 99)}.toList().