1
2
3
4
5
6
7
8
9
10
11
12
13
import { markovOfRandomStrings } from "https://esm.town/v/jdan/markovOfRandomStrings";
import { traverse } from "https://esm.town/v/jdan/traverse";
export const randomJumbledWords = (() => {
for (let i = 0; i < 10; i++) {
console.log(
traverse(markovOfRandomStrings).slice(
1,
-1,
).join(""),
);
}
})();