Final answer:
The writeCards() function iterates over an array of names and an event name, creating personalized messages that are stored in a new array which is returned at the end.
Step-by-step explanation:
The function writeCards() requires building a loop that iterates over an array of names, creating a custom message for each that includes the provided event name. The process of collecting these messages into a new array involves initializing an empty array and appending messages to it within the loop. Here's how you could implement this in JavaScript:
function writeCards(names, event) {
var messages = [];
for (var i = 0; i < names.length; i++) {
var message = “Thank you, ” + names[i] + “, for the wonderful ” + event + “ gift!”;
messages.push(message);
}
return messages;
}
This function takes two arguments: names (an array of strings) and event (a string representing an event name). Each iteration of the for loop generates a new message string specific to each name and the event, which is then added to the messages array using the push method. Once the loop completes, the function returns the array of personalized messages.