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 trialJorge Ponce
2,252 PointsCreate a String variable named intAsString. Convert the randomNumber integer to a String value and store it in the intAs
I dont understan because he said creat intAsString becuse i saw the video and make like this the video and mark a error. please help
String[] facts = {
"ANDRES.",
"Dahiana.",
"Jorge.",
"Spain.",
"It takes about 8 minutes for light from the Sun to reach Earth.",
"Some bamboo plants can grow almost a meter in just one day.",
"The state of Florida is bigger than England.",
"Some penguins can leap 2-3 meters out of the water.",
"On average, it takes 66 days to form a new habit.",
"Mammoths still walked the earth when the Great Pyramid was being built.",
"Texas."};
String fact = "";
Random randomGenerator = new Random();
int randomNumber = randomGenerator.nextInt(facts.length);
fact = facts [randomNumber];
1 Answer
Ben Jakuben
Treehouse TeacherHi Jorge Ponce , are you still having trouble with this challenge? It looks like you've gotten some good answers on your other posts about this. This one has a great explanation from Jason about what you need to do: https://teamtreehouse.com/community/help-i-dont-now-whathappend
Jorge Ponce
2,252 PointsJorge Ponce
2,252 PointsTHanks a lot everyone