for demonstration purposes I'd like to set a paragraph with random wordspacing. I tried to adapt the solution for the chtulhu question (https://tex.stackexchange.com/a/29458/9666) but actually I must admit: I don't understand the given solution.
This is what I tried so far:
\documentclass[10pt]{article}% This is a document class providing more font size options
\usepackage[first=2,last=6]{lcg}
\newcommand{\globalrand}{\rand\arabic{rand}pt}
\newcommand{\randomskip}[1]{\spaceskip=\globalrand}
\makeatletter
\def\randwordspace#1{%
\@randwordspace#1 \@empty
}
\def\@randwordspace#1 #2{%
\randomskip{#1}\space
\ifx #2\@empty\else
\expandafter\@randwordspace
}
\makeatother
% ----------
\begin{document}\pagestyle{empty}
\randwordspace{This is a paragraph I would like to have set with random spaceskip between the words.
This is a paragraph I would like to have set with random spaceskip between the words.
This is a paragraph I would like to have set with random spaceskip between the words.
This is a paragraph I would like to have set with random spaceskip between the words.
This is a paragraph I would like to have set with random spaceskip between the words.}
\end{document}
Any help?

