### Description A computed property: ```swift var asJSON: String { ... } ``` can also be expressed as a zero-parameter function: ```swift func asJSON() -> String { ... } ``` We could introduce a pair of code actions that convert from the first to second, or second to first.