I have this text file (race.txt) with car racing data and in the file the format of the information is like this:

Jeff
12.17
George
14.02
Mitch
25.03

and so on(there's many data, where Jeff, George and Mitch are name of contestant and the numbers are the racing time.
What i need to do now is I have an excel worksheet with the contestant names, birthday etc on different columns, and I need to read race.txt file with a loop and search for the names in the worksheet compare with the names in the txt file and list the correct RaceTime in a new column next to the corresponding names in the worksheet.

So for example in my excel worksheet I have:
Name | Birthday
Mitch | 12 Oct
George |13 Oct
Jeff | 15 Oct

Then after I read in the txt file it will search the worksheet for the corresponding names I have in the txt file and display the race time, so after that I will have:
Name | Birthday | RaceTime
Mitch | 12 Oct | 25.03
George | 13 Oct | 14.02
Jeff | 15 Oct |12.17

Is there a way to do this? like I dont know how to read from the text file and compare only the names with the Name column in worksheet and display the correct race times. ps these are to be done in excel vba