Well done!

You have completed Function Return Values Review!

Quiz Question 1 of 5

After the code below runs, what value is stored in the variable dayOfWeek:

function getDay() {
  return "Monday";
  alert("Calculating day");
  return "Friday";
}

const dayOfWeek = getDay();

Choose the correct answer below:

Skip Quiz Review Video