in reply to @ printing content of referenced array

$desc_ref = \@description."\n";
Get rid of the newline:
$desc_ref = \@description;
Data::Dumper is extremely helpful:
use Data::Dumper; print Dumper($desc_ref);