I've JSON data from facebook:
String response = facebook.request("me/friends?fields=username",bundle,"GET");
And data from the user's contacts:
ArrayList<HashMap<String, String>> data = getContacts();
I'm looking to iterate through both response and data. How could this be done most efficiently?