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 trialStance Jones
Courses Plus Student 576 PointsHaving trouble
adf
println("\n"Bread"\n"Milk"\n"Honey".)
1 Answer
frezy stone
3,658 Points'''html<p>Hey Stance,I see where you're having troubles. Actually the println() function allows you to print only one item at the time if I'm not mistaking. In your code up there, you are trying to println 3 items from the grocery list as 3 different Strings but it should be one whole String. One other mistake that you did is that you put separately the \n into "" and it should suffix the item not to prefix. Therefore, this is how your code must look: println("Bread\n, Milk\n, Honey\n")</p>'''