What does this program print?

from Collections
Kotlin 2.4.10 beginner 2 min

What does this program print?

kotlin
fun main() {
    val source = mutableListOf("core")
    val view: List<String> = source
    source += "jvm"
    println(view.joinToString(" | "))
}
Open in playground
Report an error