const words = ['spray', 'limit', 'elite', 'exuberant', 'destruction', 'present']; const threeLetterWords = words.filter(word => word.length <= 5) console.log(threeLetterWords); // RESULT: (3) ["spray", "limit", "elite"]