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 trialSagar Telang
Courses Plus Student 1,152 PointsError while running the app
After adding another fun fact, when i try to run the app, it gives an error saying that "error: cannot resolve symbol variable fact"
Line 29: factLabel.setText(Fact);
1 Answer
Sagar Telang
Courses Plus Student 1,152 PointsHi Daniel,
Thank you very much for your help. It worked!
Sagar
Daniel Hartin
18,106 PointsDaniel Hartin
18,106 PointsHi Sagar
Any change you could post your entire code block please hard to tell without it. I would take a wild stab in the dark and suggest checking the capital f in Fact as variables are usually lowercase for the first letter (only common practice in Java you can use uppercase and it will work it's just not the usual way of doing things).
Thanks Daniel