I really don't understand regex boundaries..
Why does this not work? My guess is the boundary isn't correct but I cant figure out why
var dateInfo = ` This project was
created on 09/02/2016
and last updated 10 days ago.`;
var regexString = '/This project was[\s]+ created on ([0-9]{2})\/([0-9]{2})\/([0-9]{4})[\s]+and last updated ([0-9]+) ([a-zA-Z]+)/im';
var arrMatches = dateInfo.trim().match(regexString);
console.log(arrMatches);