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

randomtest.java

Random randomGenerator = new Random(); int randomNumber = randomGenerator.nextInt() it doesnt work why?

RandomTest.java
int randomNumber = randomGenerator.nextInt() 

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there! The code in the question you posted passes for Step 2 if you add a semicolon at the end of the line. But the code shown in the black box which should be what you currently have in the challenge is missing the first line that you did in Step 1 and it is also missing a semicolon at the end.

These tasks are cumulative. Unless otherwise specified you should leave the code from the the previous steps intact.

Hope this helps! :sparkles:

thanks