I know I am stupid but I can not figure out where this the zero is coming from that is attached to the last record when I run this script!

$RC=RedirectOutput ("c:\names.txt", 1)

If Open(3, @LDRIVE + "usernames.txt") = 0
$x = ReadLine(3)
While @ERROR = 0
? "e:\imail\adduser -h vzw.afni.net -u " + $x + "-p america"
$x = ReadLine(3)
Loop
Close (3)
Else
Beep
? "Config file not opened, error code: [" + @ERROR + "]"
EndIf