in reply to Array Reference Question

@$ref2array = @newarray;
creates a new anonymous array and a reference to it, whereas
$ref2array = \@newarray;
only creates a new reference to the existing array.