const words = ['limit', 'exuberant', 'destruction', 'present']; const result = words.filter(word => word.length > 6); console.log(result); // Array ["exuberant", "destruction", "present"]