The `(3,8)` in the middle of the bug report tells you that line 3 has the problem. You appear to be missing the `var` keyword which Javascript uses to declare variable names. Further, `GameObject` is a type, and so comes after the variable name and after a colon, just like you have on line 2.
↧