Arrow Functions

What will be logged to the console?
const obj = {
  name: 'Object',
  regularFunction: function() {
    console.log(this.name);
  },
  arrowFunction: () => {
    console.log(this.name);
  }
};

obj.regularFunction();
obj.arrowFunction();
Next Question (4/20)