Question about how to put data in JSON format
Hello i have categories with answers data, e.g.: Europe: Germany, Austria, Hungary Asia: China, Japan, Cambodia And I need to put it in json: { "correctAnswers": { "category": { "name" : "Europe", "categoryAnswers": ["Germany", "Austria", "Hungary"] } } } How…