Can you convert the following data into the desired format through stringification?
Data:
let result = JSON.stringify([
{
"Color": "Red",
"Type":"Fast"
},
{
"Color": "Blue",
"Type":"Slow"
}
]);
Desired output:
[
{"Color": "Red", "Type":"Fast"},
{"Color": "Blue", "Type":"Slow"}
]