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 trial

Android Build a Simple Android App Basic Android Programming Using the Random Class

Declan Smith
Declan Smith
453 Points

Random generator

I am totally stuck on this challenge task to 'Initialize a new random generator' help?

RandomTest.java
Random randomGenerator;

1 Answer

Ben Jakuben
STAFF
Ben Jakuben
Treehouse Teacher

You're halfway there! The two words you have so far declare the variable. You've given it a name and set its type.

Next, you need to initialize it by essentially putting something into that variable. It's currently empty. We usually put things into variables by setting them equal to something. In this case, you want a new Random object, so you use the new keyword and then the Random class contructor, which is just the name followed by some empty parentheses.

Without giving you the complete answers, here are the parts you need to stick between randomGenerator and the semicolon:

=
new
Random()