Home /
Expert Answers /
Computer Science /
lab-8-one-dimensional-arrays-directions-in-eclipse-create-a-new-java-project-called-labs-if-ask-pa723
(Solved): Lab 8: One-Dimensional Arrays Directions: In Eclipse, create a new Java project called labs (if ask ...
Lab 8: One-Dimensional Arrays Directions: In Eclipse, create a new Java project called labs (if asked, do NOT create a module!). You will be creating a Words class. Write a class called Words, which consists of a single instance variable wordArray, an array of String objects. Aside from the main() method, the class should contain a getNext() method, which returns a random word from the wordArray instance variable and updates wordArray so that it no longer contains the chosen word. If there are no words in the array, it should return the string "NONE". For example, if the main() consisted of the following public static void main(String [] args) \{ String[] stringArray = \{"the", "quick", "brown", "fox" }; Words wordArray = new Words (stringArray); for (int i=0;i<6; it+) \{ System.out.print(wordArray.getNext()); then the text brown the quick fox NONE NONE would be returned (where NONE is returned twice since the method is executed 6 times in the for loop, and there are only 4 words in the initial array).