// open your console to see what you get
var perfectMatch = "Willoughby"
var newMatch = function () {
console.log(perfectMatch + " is the perfect match")
var perfectMatch = "Colonel Brandon"
console.log(perfectMatch + " is the perfect match")
};
newMatch()
View Compiled
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.