const nomes = [" Jose", " Roberto", " Jessica"," Gabriel"," joâo"," joana"];
for (let i = 0; i < nomes.length; i++) {
console.log(nomes[i]);
}
const nome = "Assis";
for (let i = 0; i < nome.length; i++) {
console.log(nome[i]);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: