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.

MUZ141098 Tendai Matemera
4,318 Pointsquiz question 4
Please fill in the correct answer in each blank provided below. Bummer! Unfortunately, that answer is incorrect. Skip Quiz Review Video Get Help Next Question Complete this code. We want to format the 'jokeText' String to include the value of the 'animal' variable. 'jokeText' already has the appropriate placeholder.
String animal = "monkey"; jokeText = String.format(, ); mTextView.setText(jokeText);
1 Answer

cm21
150,854 PointsThe first argument will be the first variable in the statement (the one you are declaring) and the second argument will be an earlier variable (which you are getting a value from.)
jokeText = String.format(jokeText, animal);
Hope this helps!