Dressing Choice Error Help

I’m trying to give me readers a choice in the outfit they where in a scene. I previewed the outfits and tried providing choices to which one they wanted to wear and I’m getting a weird error in the first choice. It says “There is a { on line that does not have a matching }.” But I’m confused I thought the first choice had to have the word choice in front of it instead of {. What am I doing wrong? Here is my script.

choice “Outfit 1” {

@CHARACTER changes into CHARACTER_Outfit1

{

} “Outfit 2” {

@CHARACTER changes into CHARACTER_Outfit2

{

} “Outfit 3” {

@CHARACTER changes into Character_Outfit3

{

You have too many brackets and some are facing the wrong way. It should look like this:

choice
“Outfit 1” {

@CHARACTER changes into CHARACTER_Outfit1

} “Outfit 2” {

@CHARACTER changes into CHARACTER_Outfit2

} “Outfit 3” {

@CHARACTER changes into Character_Outfit3

}