In the textbox provided, write Swift code to that will accom…

In the textbox provided, write Swift code to that will accomplish the following tasks: =================== 1-Create a collection/ARRAY of type , including a few doubles, integers, strings, and booleans within the collection.  THEN.. Loop through the Array and Print the contents of the collection. ——————— Values to store in the Array are: ============ SHELTON STATE 22 true 514.55 =============== 2- Loop through the collection/ array and….  === 2a. For each integer, print “The integer has a value of “,              followed by the integer value.  —— 2b. For each double value, print “The double has a value of “,              followed by the double value.  —— 2c. For each integer, print “The string has a value of “,              followed by the string value.  —— 2d. For each boolean, print “The boolean has a value of “,              followed by the boolean value.  —— =============