_Use the `conditional operator` in the `checkEqual` function to check if two numbers are equal or not. The function should return either true or false._
Remember that the "traditional" `if...else` syntax can be re-written using the conditional operator (`condition ? statement if true : statement if false;`)
· Run code at [repl.it](https://repl.it/@AdrianSkar/Basic-JS-Ternary-operator).
### Code explanation
- The function checks if the `condition` before the interrogation sign (`?`) is true, and if so, executes the `true` statement. Otherwise, it returns `false`.