Add property to each object in array

Write a function that takes an array of objects and a string as arguments. Add a property with key 'continent' and value equal to the string to each of the objects. Return the new array of objects. Hint: try not to mutate the original array
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Console