array_merge
function is used to combine arrays not to concatenate array values. You can achieve your desired results using concatenation operator .
<?php
$array = ["a", "b", "c", "d", "e", "f"];
$pdl = $array[4] . $array[5]; // Concatenate "e" and "f"
echo $pdl; // Outputs: ef
?>