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 Java Basics Using your New Tools Multiple Format Strings

chris okorie
chris okorie
197 Points

could someone help me

could someone tke a look at what im doing wrong and how to fix it

Multiple.java
// I've imported java.io.Console for you.  It is stored in a variable called console for you.

String "name" = console.readline

1 Answer

Simon Coates
Simon Coates
8,177 Points

Your method name is incorrect (readLine nor readline) and you need a set of () to call the function. In this instance, they seem to want you to provide a prompt (ie a parameter expressing what the value should contain I guess). Additionally, you don't need to surround the variable name with quotation marks. It accepts:

String name = console.readLine("provide some kind of value");