Code QuizIntermediate

Literal Union Alias Case

Find why assigning a string to a literal union alias fails.

Codetypescript
type Direction = "up" | "down" | "left" | "right";

let move: Direction = "Up";

What is the bug in this literal type alias usage?