Hello bluekswing,
Next time please use [code] tag around your codes. It is more readable and safe.
Here is a problem i saw in your code:
String[] randomSentence= articles[selectedElement] + noun1[selectedElement] + verb[selectedElement] + articles[selectedElement]+ noun2[selectedElement];
This cant be used like that. Write this instead:
String randomSentence= articles[selectedElement] + noun1[selectedElement] + verb[selectedElement] + articles[selectedElement]+ noun2[selectedElement];