Say you have this array with the following inputs:
$relations["fname"] = 'firstname';
$relations["lname"] = 'lastname';
Now I would like to input the two above values into the following (I know the syntax is incorrect but I would like the firstname and lastname strings to become one string and input into the secondarray):
$secondarray["name"] = $relations["fname"] + $relations["lname"];
..