let message = { name: 'John', regularFunction: function() { console.log(this) console.log('Hello ' + this.name); }, arrowFunction: () => console.log(this) } message.regularFunction(); message.arrowFunction(); //