I've watched some videos and they said "functions always return a value". If we don't use the return statement, then what does it return instead? Like the function below:
function Foo(){ var x = 4. y =5; z = x + y;}x = Foo();console.log(x);