Im Making A Small Quiz Batch File, Whats Wrong With This One?

this is my script, it says "goto is not expected here" as the error :\

@echo off

echo -------
echo :Hello:
echo -------
echo \/
echo Please Only Awnser:
echo yes
echo Or
echo no
echo /\
echo Thank you for using my Quiz Game!
pause
cls
set /p awnser = is 1 plus 1 equal to 2?
cls
if %awnser% == no goto :Wrong
if %awnser% == yes goto :Q2
echo You Didn't Awnser yes or no, Start again!
pause
cls
exit

:Wrong
cls
echo You Got The Question Wrong :(
echo Start The Program Again To Play Again :)
pause
cls
exit

:Q2
cls
echo Well, Thats The Quiz So Far!
pause
cls
exit
 
Top