Spot the value that is not an allowed literal.
let direction: "up" | "down" = "left"; console.log(direction);
What is the bug in this code?