Hello all, below is sample code i have written.Is it right way to declare ar4 which is concatenation of ar and ar1
#!/usr/bin/perl
@ar = {"rahul","patil"};
@ar1 = {"nitin"};
@ar4 = {...@ar,@ar1};
print @ar4[2];
if yes, why it is not printing output as nitin on my system
--
Regards,
Rahul Patil
