Unexpected symbol (182824)

how do I overcome this problem?? i tried re-writing the code from the start but it still won’t work! I attached some screenshots of my code and error. Thank you!

1 Answer

1

The error points you to line 2, if you look carefully you will see that your first using statement is missing the semi-colon at the end of the line, which is leading the compiler to not understand the next using statement. add a ‘;’ to the end of your first using statement, and I’d also suggest moving that semi-colon from its own line onto the line it relates to (the second using statement) for clarity.