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

Java Local Development Environments Advanced Tooling Teamwork

Exercise instructions unclear for this video. What does 'prompt for the story template' mean?

The exercise asks us to complete all the TODOs. The first one says this:

//TODO:csd - Instantiate a new Prompter object and prompt for the story template

        String story = "Thanks __name__ for helping me out.  You are really a __adjective__ __noun__ and I owe you a __noun__.";
        Template tmpl = new Template(story);

For the instruction, instantiate a new Prompter object, I have added:

Prompter prompter = new Prompter();

but what does 'prompt for the story template' mean? The instructions aren't making sense to me at all.