join($column[2],$column[4]) #### $motherID = "$column[2]$column[4]" # Interpolation # OR (They both do the same thing) $motherID = $column[2] . $column[4]; # Concatenation