Considering the following snap of code, what is the expected result?
const gotNumber = 46;
if (gotNumber>45) {
let division = 'Second Division';
}
console.log(`Division is ${division} by number ${gotNumber}`);
- Error: division is not defined
