const person = {
  name: "JONY SINS",
  age: 25,
  walk() {
    let anotherPerson = {
      right() {
        console.log("right");
      },
      left() {
        console.log("left");
      },
    };
    console.log(this);
  },
};
is it possible to call right() and left() function in this object
 
    