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 trialMuhamed Asil
7,453 PointsI don't know why error
I don't know why this code is error
Random randomGenerator = new Random(); int randomNumber = randomGenerator.nextInt(intAdstring.10); String intAsString = Integer.toString(randomNumber);
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(intAdstring.10);
String intAsString = Integer.toString(randomNumber);
1 Answer
Grigorij Schleifer
10,365 PointsHi Muhamed,
my code suggestion :
Random randomGenerator = new Random();
// TASK 2
// int randomNumber = randomGenerator.nextInt();
int randomNumber = randomGenerator.nextInt(10);
// integer 10 as nextInt method argument limits the variable from 0 to 9
String intAsString = randomNumber + "";
// adding a String ( + " ") to the integer variable creates a String
Hope this helps
Grigorij
Grigorij Schleifer
10,365 PointsGrigorij Schleifer
10,365 PointsIn my opinion this should work for the challenge too:
String intAsString = Integer.toString(randomNumber);
but the challenge wants you to create a String in the way like in the video.