Kotlin - Collections Fundamentals
Given this Kotlin code, what is the output?
val set1 = setOf(1, 2, 3) val set2 = mutableSetOf(3, 4, 5) val combined = set1 + set2 println(combined)
