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 trialDonald Beaudin
4,461 PointsI do not understand what i am to do right her?
"Create a new String variable named bestSport and set its value it to be the first element of the sports array."
How would i change that to be what it want's?
This is the code before
"String[] sports = { "Basketball", "Baseball", "Tennis" };"
1 Answer
Andy Swinford
8,152 PointsIt wants you to create a new variable (named bestSport) of the String type:
String bestSport
and it wants you to assign the first item in your array to that variable (since we are using a zero-based language, zero will be the first item of the sports array):
sports[0]
In the end it should look like:
String bestSport = sports[0];