Basic JavaScript (Return a Value from a Function with Return)

Hi,
please i need explanation/assistance cant pass this stage.. 
 function timesFive(num) {
  return num * 5;
  console.log(timesFive(5));

  function timesFive(num) 
  return num * 5;
  console.log(timesFive(2));

function timesFive(num) {
  return num * 5;
  console.log(timesFive(0));


}

Hello~!

Is this your current code? It appears you have the function declared 3 separate times, which will cause errors.

okay thanks it worked have been on this since last night...
okay seen.. thanks :smile: