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"))
}