I have tried using the includes() function but it returns false for me as follows:
<script>
var fruits = ["Banana-orange", "Orange", "Apple", "Mango"];
console.log(fruits.includes("-")); // returnes false, should be true
</script>
As you can see, 'banana-orange' contains a hyphen. I expect the result to return true.
Am I using the wrong function?