Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

nivaldo rocha
Courses Plus Student 130 Pointsrandomtest.java
Random randomGenerator = new Random(); int randomNumber = randomGenerator.nextInt() it doesnt work why?
int randomNumber = randomGenerator.nextInt()
1 Answer

Jennifer Nordell
Treehouse TeacherHi 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!
nivaldo rocha
Courses Plus Student 130 Pointsnivaldo rocha
Courses Plus Student 130 Pointsthanks