Perl Assignment

Order Description

Prompt the user to enter their first name and store it in a scalar called $first. Convert it to an array called @first. Pass the array into a subroutine called super. This subroutine will modify the array by adding the elements s u p e r at the beginning of the array. super will act to modify the array passed into it. Convert the array that comes back from super to a scalar and store it $newfirst. Print this scalar to the screen. Include a newline at the end. The code will be tested on binf.gmu.edu. Make sure that the code is self-executing and has the correct new lines at the end.