Actually this works too: ```val long: Array<Str...
# announcements
k
Actually this works too:
Copy code
val long: Array<String>
val short: Array<String>

if (first.size > second.size) {
    long = first
    short = second
} else {
    long = second
    short = first
}