1. val map = hashMapOf(1 to "one", 2 to "two", 3 to "three")
2. enum class Color {RED, GREEN, BLUE}
3. val list = arrayListOf(1, 2, 3)
4.val set = hashSetOf(1, 2, 3)
Answer:3