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 trialchrisobrien2
1,752 PointsDeclare (AKA create) an int variable named numberOfSports length property
hello. what am I doing wrong here? thanks in advance
String[] sports = { "Basketball", "Baseball", "Tennis" };
int numberOfSports = sports.length;
Jordan Ernst
5,121 Pointslooks correct to me, good job!
chrisobrien2
1,752 Pointschrisobrien2
1,752 PointsIt looks like the code on the second line didn't carry over fro the previous lesson
String[] sports = { "Basketball", "Baseball", "Tennis" }; String bestSport = sports[0]; int numberOfSports = sports.length;