Find why this function can report a successful guest profile after an account load failed.
swift
func displayProfile(id: Int) -> String {
do {
return try loadProfile(id: id)
} catch {
print("profile load failed: \(error)")
return "Guest"
}
}