

public class Demo1
{
    public static void main(String[] args)
    {
        String[] words = { "abc", "klm", "xyz"};  // words is a collection

        for (String e: words) 
        {
           System.out.println(e); // Prints: abc klm xyz
        } 
    }
}
