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 trialAbdel Hadi Dagher
558 Pointsthe compiler says that there is an error with; I don't know what to do
the compiler says that there is a ; missing in my code i tried hard to find where i should put it :/ here is my code i hope you help me with it :
Random randomGenerator = New Random(); int randomGenerator = randomGenerator.nextInt();
Random randomGenerator = New Random();
int randomGenerator = randomGenerator.nextInt();
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! Something changed in your code between step 1 and step 2. Take a look at this hint from step 1:
Hint: Don't forget to use the new keyword.
Remember, just about everything in programming is case-sensitive. Did you use new
or New
?
In step 2 take a look at this part of the instructions:
Create a new int variable named randomNumber.
But you created a new int variable named randomGenerator
which is overwriting the randomGenerator
variable you declared in the line just before. It should be int randomNumber
.
Hope this helps!