Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialWilliam 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,712 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.