json example array
{
	"name":"John",
	"age":30,
	"cars":[ "Ford", "BMW", "Fiat" ]
}
// Another exemple
{
    "people": [
        {
            "website": "stackabuse.com",
            "from": "Nebraska",
            "name": "Scott"
        },
        {
            "website": "google.com",
            "from": "US",
            "name": "Zuck"
        }
    ]
}
