TS2378error TS2378: A ‘get’ accessor must return a value.Broken Code ❌123get name() {}Fixed Code ✔️123get name(): string { return 'Benny';}