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.

Sonya 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