import java.util.*; import java.lang.Math; public class arrayPractice { private static String[] noun = new String[10]; //dog, house, tree, ... private static String[] actionVerb = new String[10]; //runs, sleeps, walks, ... private static String[] adverb = new String[10]; //quickly, loudly, softly, ... private static String[] adjective = new String[10]; //red, cold, angry, happy, ... private static String[] linkingVerb = new String[10]; //is, was, will be, seems, feels, ... public static void main(String[] args) { //build your 5 arrays Arrays //build your 10 sentences } /* pre: word arrays are initialized post: randomly builds a sentence of either structure (0) The (noun) (action verb) (adverb) (1) The (noun) (linking verb) (adjective) */ public static void buildSentence() { //randomly choose between two sentence types //randomly display one word from each array } /* pre: length is the length of array post: the user inputs length words and they are put into the correct array */ public static void buildArray(String type, String[] array, int length) { } /* pre: none post: returns a random integer between 0 and (n-1) */ public static int randomNumber(int n) { } }