Consider the following code… let person1 = {  name: {    fir…

Consider the following code… let person1 = {  name: {    first: “Ada”,    last: “Lovelace”  },  born: 1815};let person2 = { …person1 }; person2.name.middle = “Augusta”;person2.name.last = “King”;person2.born = 2025;const n = person1.name;const y = person1.born;console.log(`${n.first} ${n.middle} ${n.last} of ${y}`); What would be the output?