John Bloome Logo John Bloome Logo

Wordle Starter Words

TL;DR

I am going to put the “Jump To Recipe” button right at the top. The objective is to find a set of words that may be used as Wordle starter words that accomplish two things:

My analysis contains two main assumptions:

Here are two words I deduced as a good starter words (as of January 24, 2026):

Data Insights

Methodolgy

To conduct an analysis, I needed to gather data on all five-letter words in the English language, load it into a database, and then organize, analyze, validate, and visualize the data. Database tables and queries are also available on GitHub.

Gathering Data

I was able to retrieve all needed data from the three open sources listed below.

All Words

A text file containing 479,000 English words may be found here.

Common Words

This list of 10,000 common words is a widely referenced dataset, often attributed to Eric Price at MIT, it provides a plain text list of frequently used English words. It is frequently used for testing, natural language processing, and generating random words. The list is ordered by frequency and includes foundational vocabulary.

Words That Were Previously Featured

Past Wordle answers: An archive of previously used words in Wordle.

Data Analysis Tools

The process involved using the following tools.

SQL Database Tables

In order to analyze the data, I created three database tables:

SQL Queries

I focused on extracting data along the following factors:

Additionally, I compared the set of common words to the set of previous winners. Out of the 1,680 winning words, 672 were identified as common words, 40% of winning words are included in the common word data set. That leaves 707 common words that have yet to be the winning word.

Google Sheets

I then upload all extracted data to Google Sheets for visualization. The first two tables illustrate how often each letter of the alphabet appears in each letter position for all words (Figure 1) and winning words (Figure 2). The last table compares the letter distributions for all words and winning words.

Figure 1. All words with previously winning words excluded.
John Bloome Analysis

Figure 2. Only winning words.
John Bloome Analysis

Figure 3. Comparison of the two sets.
John Bloome Analysis

Data Review

Looking at the visualizations, there are some meaningful observations.

Focus Areas

I decided to search for two distinct data sets.

First, a set of words which are aimed at guessing the word on the first guess. I included only common words and all of the letters highlighted in figure one above (All words minus winners, letters in positions with a greater than 5% frequency).

Word Set Focused on Solving on First Guess

Search Criteria:

Results:

Since it is random, all of these words yield about the same chance at solving in the first word (slim, maybe 1:1,000 if the assumptions are correct). I personally go with SALON since it begins with 'S'. Who knows though, there are killjoys out there that start with ADIEU every day, no fun. Also some of the words in the list appear to be proper nouns and may not be accepted by Wordle, that makes the odds even better! It also illustrates that even with large data sources, information still requires human judgment. Wordle writers can be cruel, but it is doubtful they are going to include BRIAN as their daily word.

Second, a set of words which are aimed at eliminating as many words as possible while still having a slight chance to guess the word on the first try. For this data set, I searched for all words that begin with 'S' and contain the two most frequent vowels, 'A' and 'E'. For the vowels, I wanted to look into the two blue spaces in the first figure above, ‘A’ in position 2 and 'E' in position 5. For the remaining two positions, I opted to use the four most frequently appearing consonants overall.

Word Set Focused on Eliminating Words

Search Criteria:

Results:

Since 'N' is underrepresented by about 2.2% in previous winners, I feel it is SANER to go with option two.

Roadmap... Maybe

I had a lot of fun putting this together and hope others also find joy in reading this. Should I opt to keep it up, there are a few things I would do.

Most Important - Have Fun, Play Wordle!