What will this code output?const obj = { name: "Hello", sayHello: function() { console.log(this.name); } }; obj.sayHello();