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 with Java Basic Android Programming Using the Random Class

i would like to see the solution of that exercise to understand how is correct. im stuck.

Challgente task 4 of 4

RandomTest.java
String[] intAsString = {
  "Matilde comia jamΓ³n",
    "Cromosoma"};
Random randomGenerator = new Random();
String[] randomNumber = randomGenerator.nextInt(intAsString.length);

1 Answer

Hello!, u did not followed the instructions properly, this is the complete answer: Random randomGenerator = new Random(); int randomNumber = randomGenerator.nextInt(10); String intAsString = randomNumber + "";

1.first u create an instance of the Random() class called randomGenerator because u want to use the class methods. 2.next u create a integer called randomNumber which will hold a random value >> u use randomGenerator.nextInt(10) because u want to generate a random number from 0-9. lastly u convert a integer into a string by adding β€œβ€.

i hope it’s clearer now.