22. Consider the following code. What will gets logged on the console?

hoisted();
function hoisted() {
    console.log('foo');
};