Using nawk, how to print all first names containing four characters?

Where someFile contains the data that you have supplied:

nawk '{if(length($1)==4){print $1}}' someFile

Output:

 Mike
 Jody
 Chet