Figured it out....hope this helps someone else....
dim fso, resultsfile, answerfile, intCounter
'Set variables
intCounter = 0
Set fso = WScript.CreateObject("Scripting.FileSystemObject")
const ForReading = 1
Const ForWriting = 2
Const ForAppending = 8
'Open the Results.txt file for Reading
set ResultsFile = fs

penTextFile ("C:\SQLTest\Results.txt", 1)
'Open the Answers.txt file for Reading
set AnswerFile = fs

penTextFile ("C:\SQLTest\answers.txt", 1)
'======================Begin Marking the Test===============
'Perform answer comparison between user's results and the actual answers
do until ResultsFile.AtEndOfstream and AnswerFile.AtEndOfstream
strReadR = ResultsFile.ReadLine
strReadA = AnswerFile.ReadLine
if strReadR = strReadA then
intCounter = Intcounter + 1
End If
Loop
AnswerFile.close
ResultsFile.close
wscript.echo "Your Score is: " & intCounter / 10 * 100 & "%"
wscript.quit