0 / 60 seg.

What line of code causes this code segment to throw an error?

const lion = 1;
let tiger = 2;
var bear;
++lion;
bear += lion + tiger;
tiger++;