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.

MUZ140698 Kudakwashe Gwaindepi
4,150 Pointsim getting an error message that says i have to include a return statement
please help guys, if i return a null it gives an error
public class PictureBook {
public String mTitle (){
return "";
}
}
1 Answer

Steve Hunter
57,682 PointsHiya,
In this challenge you are first creating a public class, which you've done, then adding a member variable. You have added a method.
If you just declare a public variable of type String inside the class, then you will have completed the challenge.
public class PictureBook {
public String mTitle;
}
That should do it!
Steve.
MUZ140698 Kudakwashe Gwaindepi
4,150 PointsMUZ140698 Kudakwashe Gwaindepi
4,150 Pointsthanx steve, you saved me
Steve Hunter
57,682 PointsSteve Hunter
57,682 PointsNo problem!