Arrays: Task 2


  1. Convert the string into an array, removing the + characters in the process. Save the result in a variable called myArray.
  2. Store the length of the array in a variable called arrayLength.
  3. Store the last item in the array in a variable called lastItem.

Array: Fred,Freehand,Freestyle,Fresco,Fritz,Frogfoot,Fulcrum,Fullback

The length of the array is 8.

The last item in the array is "Fullback".