Tried to split string using regex. I cannot extract the parentheses

I wanted my myResult = [ ’40’, ‘-‘, ‘(‘, ’60’, ‘*’, ‘2’, ‘)’ ]

let myInput = '40-(60*2)';
let myResult = myInput.split(/([*/+-])/);
console.log(myResult)