diff --git a/src/game.js b/src/game.js index 813ff7b..7b34d08 100644 --- a/src/game.js +++ b/src/game.js @@ -123,9 +123,11 @@ function setSelectorMatches(value){ function displaySelectorMatches(){ selectorResultsHTML.innerHTML = selectorMatches + .concat(ALL_REGIONS) .map(region => { - return `
${region}
` + return `
${region}
` }) + .sort() .join(''); }