Hi community,
I have a question regarding the native JSON object in C3.
I am currently building a quiz game and need to write/output the results in a JSON formatted array or (JSON nested array) just like the example below. The JSON tutorial is extremely simple and does not cover JSON arrays. Can someone in the community guide me through the right events/actions on how to set up this structure in JSON. Is the JSON object able to to output something like this Ashley or Nepeo?
Thank you in advanced for your help.
[
{
"answer": 0,
"incorrect": 0,
"correct": 0
},
{
"answer": 0,
"incorrect": 0,
"correct": 0
},
{
"answer": 0,
"incorrect": 0,
"correct": 0
},
{
"answer": 0,
"incorrect": 0,
"correct": 0
}
]