const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present']; const result = words.filter(word => word.length > 5) console.log(result); // expected output: Array ["exuberant", "destruction", "present"] array filter