Hi I have a string - comma seperated - of array names. e.g. var stringname = "array_one, array_two, array_three, array_four"; And I want to merge all the arrays named in the string into one big array. (The string is produced via PHP as the exact arrays to merge may vary). I've tried var comboarray = comboarray.concat(eval(stringname)); But the eval()sn't working as ...