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 Lists Java Lists Java Lists Quiz

What is going on here?

I get the green checkmark that my code is correct in the editor section, but up top I get the Bummer error message. Note the part the for loop, it asks: Write a for-each loop to print out each dog name:

import java.util.ArrayList; import java.util.List;

public class Main {

public static void main(String[] args) {
    List<String> dogNames = new ArrayList<>();
    dogNames.add("Snoopy");
    dogNames.add("Rin Tin Tin");
    dogNames.add("Gloria");

   for (dogNames : dogNames) {
        System.out.println(name);
    }
}

1 Answer

Not sure what the checker is doing. But for the question you will want to read the line below what you edit

System.out.println(name)

and notice that name is the element in the loop. Try this instead:

for (String name: dogNames)

thank you sooo much! I was starting to pull my hair out. :)