0 / 60 seg.

An error is generated when you try to compile the following code. How should you change the call to printStudents to fix the error?

fun main() {
    val students = arrayOf("Abel", "Bill", "Cindy", "Darla")
    printStudents(students)
}
fun printStudents(vararg students: String) {
    for(student in students) println(student)
}