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 trialnivaldo 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