can I not have a map of String, Array<String&gt...
# getting-started
o
can I not have a map of String, Array<String> ?
Copy code
val technologies = mapOf<String, Array<String>>("Jetpack Compose", arrayOf("Compose"))
OOPS brain fart
Copy code
val technologies = mapOf("Jetpack Compose" to arrayOf("Compose"))