1) Declare an array containing a list of numbers. Write code that produces the sum of the numbers. Determine the maximum value in the list. 2) Declare a hash with countries as the hash key and capitals as the hash value. Write a small script that lists the countries in alphabetical order along with their capitals. 3) Declare two hashes, similar to the one in 2, but with different keys /values. Write a script that combines the two hashes into a new hash. 4) Take the list defined in 1) and transform it into another list containing the squares of the values. Implement this using the foreach method and again using the map function.