What does the function return when called as `read("data")`?func read(_ name: String) -> String { var status = "opened" defer { status = "closed" } return status }