Regular Expressions: Extract Matches
let extractStr = "Extract the word 'coding' from this string.";
let codingRegex = /coding/; // Change this line
let result = extractStr.match('coding'); // Change this line
Should it not be .match(codingRegex)? It still passes the tests even in this method