// Open your console and type firstname()

// what happens? 

// now type myName() and see what happens
function myName() {
  function firstName() {
    console.log("Christina")
  }
  return firstName()
}
myName()

View Compiled

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.