Assign a variable solveEquation with a function expression that has three parameters (x, y, and z) and returns the result of evaluating the expression y + x - 4* Z. 1 2 \* Your solution goes here */ 3 4 solveEquation (2, 4, 5.5); // Code will be tested once with values 2, 4, 5.5 and again with values -5, 3, 8 5 Display elements at indices 2 and 5 in the array userNumbers separated by a space. 1 var userNumbers = [1, 6, 41, 8, 24, 4); // Tests may use different array values 2 3 * Your solution goes here */ 4 Loop through the characters in the string wise Proverb and assign timesAppeared with the number of times 'i' appears in the string. 1 var wiseProverb = "When in Rome do as Romans do."; // Code will be tested with "You can lead a horse to water, but you can't make him a 2 var times Appeared = 0; 3 4 /* Your solution goes here */ 5 Update the variable latestUpdate to the year 2017 using Date methods. 1 let latestUpdate = new Date(2010, 3, 21); 2 3 * Your solution goes here */ 4