My problem isn't that simple though...<br>One of those strings is in a array.<br><br>For example, the following program:<br>@test = ('bob', 'sid', 'derek');<br>foreach $test (@test) {<br> $test = $test + "n";<br> print $test;}<br><br>produces:<br>000<br><br>not bobnsidnderekn like I would suspect.<br>How do I add a scalar/string to a scalar/string in array.<br><br>Chris<br>