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 trial

Android Build a Simple Android App (retired 2014) Learning the Language Introduction to Arrays

Jeremiah Chersin
Jeremiah Chersin
3,601 Points

Declare a String variable named 'bestFrog' and initialize it to the first element of the frogNames array.

I'm not sure what it's asking me to do on this task. Any help is greatly appreciated.

2 Answers

Doug Ray
Doug Ray
7,493 Points

Hi Jeremiah its asking you to give a string variable the value of the first element of your frogNames array. So you will have your frogNames array variable that gets declared like string[] frogNames = {"firstname","secondName"}; then to get the first element of the array you will need to access the array by its index so string bestFrog = frogNames [0] should give the value firstname.

Happy Coding !

Jeremiah Chersin
Jeremiah Chersin
3,601 Points

Okay awesome, I got it now. I was on the right track before but I was putting 1 as the element instead of 0. The whole starting at 0 is still clear as mud to me as Ben would say. haha