What is the output of this code? seenagape 11 years ago Consider the following program code:@array = (“one”, “two”);push(@array, “three”);shift(@array);unshift(@array, “four”); pop(@array);print($array[0]);What is the output of this code? A.one B.two C.three D.four ← Previous question Next question →