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++;
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++;