It’s there since the invention of text to speak (like Siri), or even before that.
You choose a random youtube video, extract the audio and translate it into written text. (Google it)
Use String.Split node in Dynamo and use the space character as the “splitter”
Then use a Randomizer workflow.
import clr
import sys
import System
from System.IO import *
from System.Net import *
url="https://svnweb.freebsd.org/csrg/share/dict/words?revision=61569&view=co"
request = WebRequest.Create(url)
with request.GetResponse() as response:
with response.GetResponseStream() as stream:
with StreamReader(stream) as reader:
html = reader.ReadToEnd()
#html = html.encode("utf-8")
lstTxt = html.split()
OUT = lstTxt