Detect an out-of-order tuple assignment.
let person: [string, number] = [42, "Alice"]; console.log(person);
What is the bug in this code?