What's the Kotlin equivalent of Java's String[]?
I see that Kotlin has ByteArray, ShortArray, IntArray, CharArray, DoubleArray, FloatArray, which are equivalent to byte[], short[], int[],char[], double[], float[] in Java.
Now I'm wondering, is ther..