TS2355error TS2355: A function whose declared type is neither ‘void’ nor ‘any’ must return a value.Broken Code ❌123getName(): string {}Fixed Code ✔️123getName(): string { return 'Benny';}