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

Array prob

Declare an int variable named 'numberOfFrogs' and set it to the number of elements in the array using the array's 'length' property.

ans -int NumberOfFrogs = randomGenerator.nextInt(answers.length);

but there is an something error.please help me what is the solution.

1 Answer

It looks like you need to assign the length of the array (arrayName.length) to the variable 'numberofFrogs'. In this case you don't need a random generator:

int NumberOfFrogs = arrayName.length;  //replace arrayName with whatever variable you're using for the array

this link might help:

https://teamtreehouse.com/forum/im-sure-i-answered-the-question-correctly-am-i-missing-something

thanks this helped me on a different code challenge. I was making it too complicated with parentheses and/or quotes, when it was really just as simple as arrayName.length !