• Missing ")" in example code

Question related to mission Unix Match. Part 1

 

Quick note: line 9 is missing the 2nd ")".

Current: console.log(unixMatch('somefile,txt', '*');

Corrected: console.log(unixMatch('somefile,txt', '*'));

Cheers