Just started learning JS and I was hoping someone could explain how I can use the global function add2 to fill in the combined AgesPlus2?
function add2(num1, num2) {
  return (num1 + num2) + 2;
};
let people = {
  age1: 43,
  age2: 23,
  combinedAgesPlus2: add2(age1, age2)
}
 
     
     
     
     
    