Hint
Consider what happens when you pass a primitive type versus an object to a function and how reassignment affects the original variable
function change(obj) { obj = { age: 30 }; }
let person = { name: 'John', age: 25 };
change(person);
console.log(person.name);
console.log(person.age);John 25