```ts const foo = 'foo' let a = foo console.log(a) ``` Notice that the first reference on `foo` has a span that is 1 character wide.  This span is actually for the reference to `a` in the `console.log` statement. Notice the highlight on `a` in the editor panel. 