Use Conditional Logic with If Statements problem

this is my code.why it is not running?please help me out

Your code so far

// Example
function ourTrueOrFalse(isItTrue) {
  if (isItTrue) { 
    return "Yes, it's true";
  }
  return "No, it's false";
}

// Setup
function trueOrFalse(wasThatTrue) {
  
  if(wasThatTrue==true){
    return "Yes,that was true";
  }
    return "No,that was false";

  // Only change code below this line.
  
  
  
  // Only change code above this line.

}

// Change this value to test

trueOrFalse(false);

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/use-conditional-logic-with-if-statements

perhaps you need to follow the instruction

  // Only change code below this line.
    
  // Only change code above this line.

also, mind the strings. am not sure but it might be space sensitive

"Yes, that was true"
"No, that was false"

thanks,the problem was occuring due to spacing.