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 trialJasper Masinyani
539 PointsCreate a new int variable named randomNumber. Use the randomGenerator variable and its nextInt() method to get a random
Create a new int variable named randomNumber. Use the randomGenerator variable and its nextInt() method to get a random number. Do not set a range.
Random randomGenerator = new Random();
Int randomNumber = RandomGenerator.nextInt();
2 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Jasper,
The int
datatype should be in all lowercase.
Also, on the right side of the assignment you need to call the nextInt()
method on randomGenerator
variable. You have a capital 'R' but it should be a lowercase 'r'
Sean Walker
1,792 Pointsyou did it alright! just a simple mistake ... you need to use int as method so use lower case "i" instead of "i" in your int also need to use lower case "r" instead of "R" write it like : int randomNumber = randomGenerator.nextInt();
hope this helps :)