>>37794819If you want only a number of pre defined combinations manually created to be possible, do
>>37794847If you have too many combinations possible for each entry in the dictionary, have two arrays, one for possible values in the keys of the entries, and a second one with all possible values for the keys. Create an empty dictionary and select randomly one key from one array, and then randomly one value from the other array. Do that the for number of words you want to create, create a new entry in your dictionary for each one. That should do it.