Como posso transformar um JSONArray em um JSONObject?

Basicamente eu tenho:

JSONArray j = new JSONArray();
j.add(new JSONObject()); //JSONObject has a bunch of data in it
j.add(new JSONArray());  //JSONArray has a bunch of data in it

E agora eu gostaria de transformar issoJSONArray dentro deJSONObject com as mesmas informações. Para que eu possa passar o objeto e quando eu quiser, posso pegar todas as informações do objeto. Qualquer ajuda seria apreciada, obrigado.

questionAnswers(4)

yourAnswerToTheQuestion