function trueOrFalse(wasThatTrue) {
// Only change code below this line
if (true) {
return "Yes, that was true";
}
return "No, that was false";
// Only change code above this line
}
Challenge: trueOrFalse(false) should return the string No, that was false