The basic algorithm would go like this (described a little more general than the question states, for two arbitrary arrays array1 and array2, and an arbitrary desired length for the resulting array):
- Build an array of the elements which are in array1 but not in array2
If the element count of the remaining list and array2 combined smaller than desired length:
-> Then we can't build the result, there's just not enough elements
- Build an array of as many random elements from diff as are missing from array2 to reach desired length
- As result, merge array2 with the random array created in the previous step.
In PHP, that would go something like this (assuming $array2 is really an array, that's not 100% clear from the code shown in the question):
// if you're not sure that $array1 and $array 2 only hold unique values, do this:
$array1 = array_unique($array1);
$array2 = array_unique($array2);
// actual algorithm:
$DesiredLength = 4; // can be passed in as parameter or defined as constant
$diffarray = array_diff($array1, $array2);
if (count($diffarray) + count($array2) < $DesiredLength) {
echo "Impossible, not enough unique elements!";
}
$randarray = array_rand(array_flip($diffarray), $DesiredLength - count($array2));
$arrFinal = array_merge($randarray, $array2);
with a little inspiration from other answers (array_rand, array_merge). For explanation why the array_flip is done, see the array_rand documentation - array_rand would actually return the keys; but since your values are strings and unique, we can simply use the values as keys and with that trick get random values directly.