You have two arrays, a and b. Which line combines a and b as a list containing the contents of both?
val a = arrayOf(1, 2, 3)
val b = arrayOf(100, 200, 3000)
You have two arrays, a and b. Which line combines a and b as a list containing the contents of both?
val a = arrayOf(1, 2, 3)
val b = arrayOf(100, 200, 3000)