Your syntax was effeedd up. You need to be OCD like your computer is!
Remember to include parenthesis on if statements:
void roll() {
spaces += int(random(1, 3));
if (spaces >= 15) {
spaces = 15;
}
}is correct but
void roll() {
spaces += int(random(1, 3));
if (spaces >= 15)
spaces = 15;
}is not.
Also where you put whitespace doesn't always matter to the computer, but it's still a good practice to use whitespace consistantly. It makes it easier to spot other erros that do matter when reading your code. So jellyFilledEvent() is chill but jellyFilledEvent () is not.
I think what was breaking your program was a lack of semicolon. I fixed that but I forget exactly where it was.