export function longestWords(words) { // implementar logica aqui let maior = 0; for (const palavra of words){ if (palavra.length > maior) maior = palavra.length; } const arr = []; words.map(element=>{ if (element.length === maior) arr.push(element); }) return arr; }