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 trialMatthew Hillberg
722 Pointsrandom.java code quiz
i have been doing the Android quiz and the last part just keep stumping me
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(10);
answer = Integer.toString(randomNumber);
this is the code above i've gotten from the vid and the last part says its wrong. the part i'm on says to use the .toString(); method. I don't know if i'm doing it wrong or not?
1 Answer
Kristen Law
16,244 PointsIt asks you to declare a String
variable named intAsString
. In your code, you forgot the data type String
for your variable. Your variable must also be named intAsString
for the code to validate. Everything else looks correct!
It should look like this:
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(10);
String intAsString = Integer.toString(randomNumber);