✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Quelle est la sortie du code suivant ?
fun main() {
val mots = arrayOf("un", "deux", "trois")
for (i in mots.indices) {
print("${mots[i].length} ")
}
}