Global LocalConsider the following code block. What gets logged? var x = 5; (function() { console.log(x); var x = 10; console.log(x); })(); Select one:5 and 10undefined and 105 and undefinedundefined and undefinedSubmit