1.define secret word 2.create a revealed letter list that starts empty
2. set wrong guess count to 0
3. ask the user for a letter
4. is the letter in the secret word?
5. if so: add it to the revealed letters list
create a blank string
for each letter in the secret word, if the letter in revealed letter list, add that letter to string, otherwise add an underscore to string
6. if letter not in secret word, add one to wrong guess
7. repeat from step