Needed example of .toStringArray()

JSONArray loopData;
loopData = loadJSONArray(“data.json”);
println(loopData);
String strngArray = loopData.toStringArray();

loads a JSON Array from file - containing [{“id”: “1”}]
That is the minimum that the loadJSONArray will accept.
This why I was asking for a working example.