I created a little app that helps players find a new start word to use for Wordle. https://wordlestarters.netlify.app/
I almost always use words with 3 or more vowels as my start word. So that's what I focused on.
So here's what I did...
I was able to download the full list of possible words for Wordle.
I filtered that list to only include words with 3 or 4 vowels.
I organized those into two different arrays, one for 3 vowels and one for 4, and display those on the page.
I have another array that holds all words with 3 or 4 vowels and use this to select a random suggested word.
I connect to the free Merriam-Webster's dictionary API and get the definition for the randomly selected word. The randomly selected word is a parameter for the API call.
I'd love any suggestions on how it can be improved or see if anyone else builds something similar. You can see my code on Github
Lovely! Might recommend attributing Merriam-Webster on the site itself, under the definition, perhaps?
Wow! Great idea. No wonder you always beat me :)