Considering the following snap of code, what is the expected result?

const gotNumber = 46;
if (gotNumber>45) {
    var division = 'Second Division';
}
console.log(`Division is ${division} by number ${gotNumber}`);