24. Consider the following code block. What will gets logged on the console?
function myFunc(theObject) {
theObject.make = 'Toyota';
}
const mycar = {make: 'Honda', model: 'Accord', year: 1998};
let x, y;
x = mycar.make;
myFunc(mycar);
y = mycar.make;
console.log(x,y);