Kotlin - Functions
Identify the error in this Kotlin function:
fun display(message: String = "Hello", times: Int) {
repeat(times) { println(message) }
}