I am writing a game using choicescript, but whenever I try to use the index it says “missing } after property value.” My mygame.js file is this:
nav = new SceneNavigator([
“Inside”
,“Outside”
]);
stats = {
Killed_Cockroach: false
Friends_with_Ogre: false
Friends_with_Pencil: false
};
//debugStats = stats}
What’s wrong with it?