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 trialApurva Muthe
972 PointsInitialize a new Random variable called randomGenerator. Hint: Don't forget to use the new keyword.
How to declare a new variable?
Random randomGenerator;
Random randomGenerator = new Random();
1 Answer
Seth Kroger
56,413 PointsYou duplicated the type definition "Random randomGenerator". The type/variable definition only needs to be done once. More than that is an error for the compiler. After that the variable can be assigned or manipulated at will. Since you're initializing it immediately that is usually done all on one line.
Random randomGenerator = new Random();
Doing it on separate lines, you would just leave the type off of the assignment.
Random randomGenerator;
randomGenerator = new Random();