Javascript challange
1- First, declare a variable named myArray and assign it to an empty array. 2- Now populate myArray with two strings: Put your full name in the first string, and your favorite color in the second. 3-Next, declare a function named cutName. It should expect a parameter name. 4- cutName should return an array by breaking up the input string into individual words. Example: cutName("Douglas Crockford") should return ["Douglas", "Crockford"] Example: cutName("John B. Smith") should return ["John", "B.", "Smith"] 5- Declare a new variable named myInfo and assign it to an empty object literal. 6-Add the following three key-value pairs to myInfo: Key: fullName Value: The result of calling cutName on the name string within myArray. Key: favoriteColor Value: The color within myArray. Key: github Value:If you have a github handle, enter it here as a string. If not, set this to null instead.