" unexpected symbol ` ' "

im learning how to mess around with unity and code in c# online,
it is only my second day and i have viewed the instructors code many times,
and tried to copy it as best i can (it isn’t very hard) and for some reason i get the error in the title.
can anyone help me to understand why it’s doing this ?

the error in unity is CS1525; unexpected symbol ` ’

This is an off-site project so does not belong in the HTML & CSS category of the forums. It will be moved to Corner Bar and tagged, project.

The error message would seem to indicate a missing concatenation operator:

    ... name " " + ...

should be,

    ... name + " " + ...
1 Like