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 trialSonya Cook
1,307 PointsStuck :(
Help! Not sure what is being asked here.
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(10);
intAsString = new intAsString();
1 Answer
Ken Alger
Treehouse TeacherSonya;
Welcome to Treehouse!
The "Mooshing" that is referenced in Task 4 is combining an integer
with a String
. In Java, if you have an integer
value and want to quickly convert it into a String
, you can "add" an empty string to the integer
and it will turn it into a String
object. Something like:
int numberTen = 10;
String stringVersionOfTen = numberTen + "";
Hope that points you in the right direction, and post back if you are still stuck.
Happy coding,
Ken