After converting an array to JSON, I noticed that backslashes are added at the start and end. Why is this happening?
// Sample code
var myJSON = "";
var FinalResult = JSON.stringify(result);
myJSON = JSON.stringify({"result": FinalResult});
document.write(myJSON);
// Current Output
{"result":"[\"How are you?\"]"}
// Desired Output
{"result":"["How are you?"]"}