export function isAnagram(word1, word2) for (let index = 0; index < array.length; index++) {const element = array[index]; { } function isAnagram(word1, word2) { const retorne = word => word .toLowerCase() .replace(/[^a-z0-9]/gi, '') .split('') .sort() .join(''); return retorne(word1) === retorne(word2); }