Hint
Think about what happens when you reassign a variable inside a function, and how it affects the original variable outside the function
function change(obj) { obj = { age: 30 }; }
let person = { name: 'John', age: 25 };
console.log('Before:', person);
change(person);
console.log('After:', person);Before: { name: 'John', age: 25 }
After: { name: 'John', age: 25 }