| 1234567891011121314151617181920 |
- var nextWord = (function() {
- var wordArray = [
- 'Gitote Is Tasty',
- 'Get In Touch',
- 'Get It Tested',
- 'GNU Interactive Tools',
- 'Goods In Transit',
- 'Geek In Training',
- 'Goddess In Training',
- 'Gentleman In Training',
- 'Geologist In Training',
- 'Geeks In Town',
- 'General Information Test'
- ];
- var copy;
- return function() {
- if (!copy || !copy.length) copy = wordArray.slice();
- return copy.splice(Math.random() * copy.length | 0, 1);
- }
- }());
|