Create a sentence with a random number of words within the range 4..10. @return a random sentence
()
| 94 | * @return a random sentence |
| 95 | */ |
| 96 | public String sentence() { |
| 97 | return sentence(3); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Create a sentence with a random number of words within the range (wordCount+1)..(wordCount+6). |