Code QuizBeginner

The unknown Type

See why `unknown` requires narrowing before use.

Codetypescript
let input: unknown = "hello";
let result = input.toUpperCase();
console.log(result);

What is the bug in this code?