{
    "count": 61,
    "next": "https://swapi.co/api/planets/?page=2",
    "previous": null,
    "results": [
        {
            "name": "Alderaan",
            "rotation_period": "24",
        },
        {
            "name": "Yavin IV",
            "rotation_period": "24",
        },
    ]
}
How I can convert to Array? Whe JsonObject Requires Map?
    String responseString=content.toString();
    System.out.println(responseString);
    JSONObject jsonObject = new JSONObject(responseString);
Error: JSONObject request map
 
    