You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//12.Greetings: Start with the array you used in Exercise 11, but instead of just printing each person’s name, print a message to them. The text of each message should be the same, but each message should be personalized with the person’s name.
let names = [`ShakeelaBatool`, `Bushra`, `Hira`, `Mehreen`];
// loop through each name in the array
for (let name of names) {
// print a personalize message for each friend
console.log(`Hello ${name}, I Hope You're Having A Funtastic Day!`);