I am creating a quiz maker where you can create questions and answers using input elements. Then theirs values are getting added to an array on submit.
But when someone use a single or double quote in their question,the array breaks, you can see that with the color changing:

And i get this error: Uncaught SyntaxError: missing ) after argument
Note: I already used JSON.stringify on this array and now i am parsing it. I am using these because there some backend, and the array is actually a mongoose Schema instance property.
I am honestly surprised that there is no similar question already answered, since what am facingis kind of basic.