Was talking with some friends when this came out.
If given a true random value, say niojfewjoiregjifkpoj and you added a non-random value, say 1234, is the combined value, niojfewjoir1234egjifkpoj still considered random?
(Some button mashing included)
Selecting/creating a "random" value only makes sense in reference to a set of possibilities for that value. In the example you gave, it seems like you gave a element selected randomly from the set of strings (of less than 20 characters, say). When you add some over value, as you added 1234, you simply change the set from which you drew the value (e.g. the set of strings of less than 24 characters containing 1234). But the added value does not change the randomness of the selection.
HOWEVER if the non-random value added is NOT constant, but instead relies on the original value selected, then the resulting value is NOT random.
For example, if I select a random integer $i$, and the value I add to it is $1-i$ then clearly the outcome is NOT random, but will always be $1$.