Do you want help finding the words in the daily words game?

Open the suggestions page located below the words.

Press F12.

Click on console.

Paste the code below:

const bodyText = document.body.innerText;

const requiredLetters = ['u', 'i', 'n', 'r', 's', 'd', 's']; //can leave empty or add letters that appear

const size = 8 // number of letters

// Split the text into words

const words = bodyText.match(/\b\w+\b/g);

// Filter words that contain the letters 'a', 'e' and 'i'

const matchingWords = words.filter(word =>

requiredLetters.every(letter => word.toLowerCase().includes(letter) && word.length === size)

);

console.log(matchingWords);

Suggestions will be written