Convert HTML Entities...6

why is replace not working?

Your code so far


function convertHTML(str) {
  // :)
  var ob = {
    "&":'&',
    "'":''',
    '"':'"',
    "<":'&lt;',
    ">":"&gt;"
  }
  let hna = str.split('')
  if(str.match(/[&'"<>]/)){
    return hna.map(function(x, b){
      if(x.match(/[&<>'"]/)){
        return hna.replace(x,ob[x])
      }
      
    }).join('')
  }
  else{
    return str;
  }
}


convertHTML("Dolce & Gabbana");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/convert-html-entities