public class ArraysWithString { public static void main(String[] args) { // The array size is fixed and will not change String[] words = new String[5]; words[0] = "cat"; words[1] = "dog"; words[2] = "fish"; words[3] = "ant"; words[4] = "bee"; System.out.println(words[0]); System.out.println(words[4]); System.out.println(words.length); } }