/*
Names: Store the names of a few of your friends in a array called names. Print each person’s name by accessing each element in the list, one at a time.
*/

let friendName: string[] = ["Raza", "Faheem", "Azeem", "Saleem"];


console.log(friendName[0]);
console.log(friendName[1]);
console.log(friendName[2]);
console.log(friendName[3]);

Embed on website

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