Idiomatically:
fun main(args: Array<String>) {
val someList = arrayOf("United", "Chelsea", "Liverpool")
println(someList.joinToString(" "))
}
This makes use of type inference, an immutable value, and well-defined methods for doing well-defined tasks.
The joinToString() method also allows prefix and suffix to be included, a limit, and truncation indicator.