``` val list = mutableListOf(1, 2, 3) val a = mapO...
# announcements
k
Copy code
val list = mutableListOf(1, 2, 3)
val a = mapOf(1 to list, 2 to listOf(4,5,6))

....

list.add(4)