View Single Post
  #5 (permalink)  
Old 06-27-2007, 07:45 PM
JavaBean's Avatar
JavaBean JavaBean is offline
Moderator
 
Join Date: May 2007
Posts: 1,272
JavaBean is on a distinguished road
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:

Code:
String[] randomSentence= articles[selectedElement] + noun1[selectedElement] + verb[selectedElement] + articles[selectedElement]+ noun2[selectedElement];
This cant be used like that. Write this instead:

Code:
String randomSentence= articles[selectedElement] + noun1[selectedElement] + verb[selectedElement] + articles[selectedElement]+ noun2[selectedElement];
Reply With Quote