Trying to add a string to name of instance

I am trying to capture the name of a target and add the letters “hl” on to the end and then set the visibility of another object with this modified name to true. Here is the code. The trace shows exactly what I want. Now how do I take that and set the visibity to true?

 
  var highLight:String = evt.currentTarget.name + "hl";
  trace(highLight);
  highLight.visible = true;