var a = "Hello from the other side"; console.log(a); function greet() { var b = "Hello darkness my old friend"; console.log("Returning from function at line 6: ", b); return b; } greet();