In lecture 32, there is an error.
Hi @AllanBen_Dewey,
Probably going to need to provide a bit more information of you want some help.
- which course
- what is the error you are receiving
- copy and paste the relevant code into your post
- include any relevant screenshots
The above gives us a fighting chance to help.you 
it is Learn to Code by Making Games. Lecture 32.
There error is telling you that a ) character is unrecognised. This could be either because.you have added one when you didnt need to or because you have another syntax issue before this character.
So again, if you copy and paste the code from TextComtroller.cs file into a reply here we will be able to help find the problem.
The forum supports code formatting, please place three ``` characters before and after your code in your post.
Hi,
Ok, so if you look at the error message yoy will see there are two numbers included, “9,100”. These refer to the line number and column/character position. In this case they point to the red underlined closing bracket you have on line 9.
In your enum statement you have opened the list, correctly, with a curly brace { but then yoy are trying to close the it with a standard bracket ).
So, to fix the problem, replace the closing bracket with a closing curly brace.

