Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kurt Kreusel
2,646 PointsHelp would be much appreciated, stuck on this code challenge...
Not really sure what I am doing wrong. It would be awesome If anybody could show me the correct code.
Link to code challenge: http://teamtreehouse.com/library/objects-and-random-numbers
Here is my code: 1 Random randomGenerator = new Random(); 2 int randomNumber = randomGenerator.nextInt(10); 3 intAsString = Integer.toString(randomNumber);
1 Answer

Steven Prescott
19,206 PointsRandom randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(10);
String intAsString = Integer.toString(randomNumber);
I believe you didn't initialize the variable correctly.
If I solved your problem, please click Best Answer

Kurt Kreusel
2,646 PointsThanks for the help.
Steven Prescott
19,206 PointsSteven Prescott
19,206 PointsRandom randomGenerator = new Random(); int randomNumber = randomGenerator.nextInt(10); String intAsString = Integer.toString(randomNumber);
I believe you didn't initialize the variable correctly.
"If I solved your problem, please click Best Answer"