``` const x = 'a'; const y = () => { const x = 'b'; console.log(x); } y(); ``` Output is right in the demo online (`'b'`), but when I build the code, the demo output is `'a'`. Thought I would let you know.