// indexOf method only requires a single value
// and returns the index of the FIRST value found in array
const cities = [
"Orlando",
"Dubai",
"Denver",
"Edinburgh",
"Chennai",
"Accra",
];
console.log(cities.indexOf("Chennai"));
// expected output is 4