Function Declarations vs Expressions

What is the output of the following code?
console.log(add(2, 3));
var add = function(a, b) {
  return a + b;
};
Next Question (8/20)