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 trialMichael Sander
569 PointsRandomTest.Java
i am stuck at Task 4. i can not figure out where is the mistake.
String[] facts= {};
Random randomGenerator = new Random(); int randomNumber = randomGenerator.nextInt (10); String Fact = facts[randomNumber];
String[] facts= {};
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt (10);
String Fact = facts[randomNumber];
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! The last step of the challenge does not require an array nor does it ask for one. Line one and line 5 of your code can safely be removed. It is looking for you to create a plain old string variable just like:
String hello = "Hello World!";
It wants the number that you've generated named randomNumber
to be converted to a string and then assigned to the variable intAsString
. As of right now, that variable (intAsString) does not exist in your code. Note that you can convert an integer to a string through something called "type inferencing". We do this by concatenating an empty string with an integer. The result is that the integer becomes a string.
You can find a demonstration of this at around 3:15 of this video
Hope this helps!