Kotlin - Functions
Identify the issue in this Kotlin function declaration:
fun showDetails(age: Int, city: String = "Unknown") {
println("Age: $age, City: $city")
}
showDetails()