Which call uses trailing closure syntax correctly for this function?func run(times: Int, action: () -> Void) { for _ in 0..<times { action() } }