Use Destructuring Assignment to Assign Variables from Objects, code not accepted

Tell us what’s happening:

this code looks proper and works correctly but the site isn’t accepting it for some reason. the tip section isn’t helping. any suggestions?

BTW i am using the latest version of brave browser which identifies as chrome and uses all chrome attachments just fine
Your code so far


const AVG_TEMPERATURES = {
  today: 77.5,
  tomorrow: 79
};

function getTempOfTmrw(avgTemperatures) {
  // change code below this line
   const { today, tomorrow : tempOfTomorrow } = AVG_TEMPERATURES; // change this line
  // change code above this line
  return tempOfTomorrow;
}

console.log(getTempOfTmrw(AVG_TEMPERATURES)); // should be 79

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.75 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/use-destructuring-assignment-to-assign-variables-from-objects

a. You’re using the variable name of a test object used to make sure your function works instead of the one that’s provided as a parameter to the function
b. It’s only asking you to grab tomorrow from the object, not today as well.