Write an application that uses random-number generation to create sentences. Create four String arrays called article, noun, verb, and preposition containing the following words: • The article array must contain the articles “the,” “a,” “one,” “some,” and “any.” • The noun array must contain the nouns “boy,” “girl,” “dog,” “town,” and “car.” • The verb array must contain the verbs “drove,” “jumped,” “ran,” “walked,” and “skipped.” • The preposition array must contain the prepositions “to,” “from,” “over,” “under” and “on.” Create a sentence (using the StringBuilder type) by selecting a word at random from each array in the following order: 1. Article, 2. noun, 3. verb, 4. preposition, 5. article, and 6. noun. As each word is picked, concatenate it to the previous words in the sentence using the StringBuilder append() method. The words must be separated by spaces. When each sentence is output, the first letter of the first word should start with a capital letter and the sentence should end with a period (see sample output below). The application must generate and display 20 sentences.
Place this order or similar order and get an amazing discount. USE Discount code “GET20” for 20% discount