**Check for balanced parentheses in the given string.** ```javascript ()() --> return true ((( --> return false ((() --> return false ``` I want to implement this problem using reduce() method in JS.  Can I work on this problem ?