const obj1 = { name: \'Steve\', speak() { function hello() { return `My name is ${this.name}`; } const a = hello(); return a; }, }; con