diff --git a/src/app/creator-choice-content/creator-choice-content.component.ts b/src/app/creator-choice-content/creator-choice-content.component.ts
index 25ddb4f6c63bfc1300bcd306fc37bc63f9379641..9e4ed46f4a405bc62452736f139e7182b53bf9ae 100644
--- a/src/app/creator-choice-content/creator-choice-content.component.ts
+++ b/src/app/creator-choice-content/creator-choice-content.component.ts
@@ -47,6 +47,7 @@ export class CreatorChoiceContentComponent implements OnInit {
   }
 
   fillCorrectAnswers() {
+    this.correctAnswers = [];
     for (let i = 0; i < this.content.options.length; i++) {
       this.correctAnswers.push(new CorrectAnswer(this.content.options[i], this.content.correctOptionIndexes.includes(i)));
     }