Determine the output

Report a typo

What does the following code output?

val str = "Hello, Kotlin"
var i = str.lastIndex
while (i >= 1) {
    print(str[i])
    i--
}
Select one option from the list
___

Create a free account to access the full topic