What is the canonical way to get an empty array in Scala? new Array[String](0) is too verbose.
new Array[String](0)
val emptyArray = Array.empty[Type]