//String representation of an array/list with two JSON string representations inside of it
String arrayOfTwoJSONString = "[{\"a\": \"sampleA\", \"b\": \"sampleB\"}, {\"c\": \"sampleC\", \"d\": \"sampleD\"}]";
How can I convert this to an Array or ArrayList that contains two String representations of the JSONs?