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 trial

Android Build a Simple Android App (2014) Improving Our Code Simple Refactoring: Creating a Class

Akshay Rathee
Akshay Rathee
1,205 Points

Getting Return Error

return Fact; I am getting the error while adding it. It says return outside method. What should i do?

3 Answers

Akshay Rathee
Akshay Rathee
1,205 Points

public class Factbook { public String getFact;{}{

    String[] facts = {
        "Ants stretch when they wake up in the morning.",
        "Ostriches can run faster than horses.",
        "Olympic gold medals are actually made mostly of silver.",
        "You are born with 300 bones; by the time you are an adult you will have 206.",
        "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." };

    String Fact = "";

    //Randomly select fact
    Random randomGenerator = new Random();
    int randomNumber = randomGenerator.nextInt(facts.length);

    Fact=facts[randomNumber];
    return Fact;------ Here is the error 

}

}

Logan R
Logan R
22,989 Points

Can't completely tell because it isn't displayed correctly, but I think your problem is here:

public String getFact;{}{

this should be:

public String getFact() {

You need to use () for methods and you need to drop the semi-colon.