/*
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 friendName: string[] = ["Raza", "Faheem", "Azeem", "Saleem"];

console.log(`Hello ${friendName[0]}, how are you?`);
console.log(`Hello ${friendName[1]}, how are you?`);
console.log(`Hello ${friendName[2]}, how are you?`);
console.log(`Hello ${friendName[3]}, how are you?`);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: