// 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

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.