diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js
index f7b7970..305fc9a 100755
--- a/bot/awesomescibo.js
+++ b/bot/awesomescibo.js
@@ -333,8 +333,8 @@ async function generateRound(message) {
bonus_question = data.question.bonus_question;
bonus_answer = data.question.bonus_answer;
bonus_format = data.question.bonus_format;
- htmlContent = `
TOSS-UP
\n
` + `${i}) ${question_category}` + " " + `${tossup_format}` + " " + tossup_question + "
" + "ANSWER: " + tossup_answer + "
";
- htmlContent += `
BONUS
\n
` + `${i}) ${question_category}` + " " + `${bonus_format}` + " " + bonus_question + "
" + "ANSWER: " + bonus_answer + "
";
+ htmlContent = `
TOSS-UP
\n
` + `${i}) ${question_category}` + " " + `${tossup_format}` + " " + tossup_question + "
" + "ANSWER: " + tossup_answer + "
";
+ htmlContent += `
BONUS
\n
` + `${i}) ${question_category}` + " " + `${bonus_format}` + " " + bonus_question + "
" + "ANSWER: " + bonus_answer + "
";
htmlContent = htmlContent.replace(/\n/g, "
");
finalizedHTML += htmlContent;
if (i === 25) {