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 trialJesse Peck
2,068 PointsNeed Help On Last Task!
when I run this code it keeps giving me an error where it says int can not be converted into string? So please someone help me!
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(10);
String intAsString = "";
intAsString = (10);
3 Answers
Suleyman Orazgulyyev
Courses Plus Student 5,798 PointsYou are declaring a string "intAsString" and you are assigning 10 to it. Either you have to cast it, or use a method:
Integer.toString(intAsString)
Rafael Miranda
17,121 PointsI would do like this...
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(10);
String intAsString = String.valueOf(10);
Steve Hunter
57,712 PointsHi Jesse,
The challenge is looking for you to use a moosh, i.e. adding a blank string to an integer to create a string*of* that integer.
String intAsString = randomNumber + "";
I hope that helps,
Steve.