The right result

Report a typo

What is the result of this code?

fun main() {
    val names = ArrayDeque<String>()
    names.run {
        add("John")
        add("Jane")
        add("Mary")
        add("Peter")
        add("Paul")
        add("George")
    }
    println(names.remove("Jane"))
}
Select one option from the list
___

Create a free account to access the full topic