Found non-compliant syntax. Confirm that there are no syntax errors before committing your code to a version control system.
// missing `=>` after arrow function parameters
const mult = (x, y) {
return x * y
}
const mult = (x, y) => {
return x * y
}