See why `unknown` requires narrowing before use.
let input: unknown = "hello"; let result = input.toUpperCase(); console.log(result);
What is the bug in this code?