xxxxxxxxxx
let favNum = 5; // declare variable to hold my favorite number
function myFavoriteNumber(num) { //write function that accepts one argument
console.log(num + " is my favorite number")
}
myFavoriteNumber(favNum) // prints “5 is my favorite number”; notice how the variable favNum from above was used as the argument.