Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

William Juste
7,822 PointsError- "Your loop should run three times and call 'getJSONObject()' each time through."
On the second task I have come up with the code
JSONArray jsonShows = jsonData.getJSONArray("jsonShows");
for (int i = 0; i < jsonShows.length(); i++) {
JSONObject shows = jsonShows.getJSONObject(i);
String movie = (shows.getString("title"));
int season = (shows.getInt("season"));
int episode = (shows.getInt("episode"));
Log.i("CodeChallenge", movie);
}
Does anyone know how to fix this?

Steve Hunter
57,682 PointsYeah - I agree with James. A link to the challenge would really help us out.
However, why has this just appeared in my Inbox - it's three months old!?
Steve.
James Simshaw
28,738 PointsJames Simshaw
28,738 PointsHello,
Could you post which challenge and task this is for? That would make it easier for us to help you.