Initializing an array of characters

Report a typo

Create an array of chars named characters with four elements: a, z, e, and d. After that, please, output it.

Use the provided code template.

Write a program in Kotlin
fun main() {
val characters = // ...

println(characters.joinToString())
}
___

Create a free account to access the full topic