Initializing an array of integers

Report a typo

Create an Int array named numbers with five elements 12, 17, 8, 101, 33.

Use the provided code template.

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

// do not touch the lines below
println(numbers.joinToString())
}
___

Create a free account to access the full topic