I am creating a array of JSONArray objects as:
JSONArray Records[] = new JSONArray[10];
However, whenever I try to access it, I an getting a null pointer exception using the below code:
int sizeOfOneArr = Records[2].length();
Am I missing an important concept?