Please give me some idea how to constract sentence.<br><br>I have 4 arrays type String<br><br> public static void main(String args[] ) {<br><br> String[] article = {"the","a","one","some","any"};<br> String[] noun = {"boy","girl","dog","town","car"};<br> String[] verb = {"drove","jumped","walked","ran","skipped","hopped"};<br> String[] preposition = {"with","from","over","under","on"};<br> I need to construct sentence composed of randomly choosen words from those arrays,capitalize first letter of sentence,place period at the end of sentence and place space character between words.The problem is that all of this have to be in onesingle large string.I have real problem mixing these functions together.Please help!!!