Use the conditional operator in the checkEqual function to check if two numbers are equal or not. The function should return either "Equal" or "Not Equal".

JavaScript
function checkEqual(a, b) {
  return a === b ? "Equal" : "Not Equal";
}
Source

Also in JavaScript: