I have an array
my @numbers;
my $num1 = 23;
my $num2 = 4;
@numbers=(\$num1 ,\$num2);
print @numbers;
then on printing the array i get something like this SCALAR(0x6a16ec8), i want the values. How do i properly store the scalar values in the array?