Identify a value that falls outside a union type.
let id: string | number = true; console.log(id);
What is the bug in this code?