Where someFile contains the data that you have supplied:
nawk '{if(length($1)==4){print $1}}' someFile
Output:
Mike
Jody
Chet
Where someFile contains the data that you have supplied:
nawk '{if(length($1)==4){print $1}}' someFile
Output:
Mike
Jody
Chet