 Remember to use <a>**`Read-Search-Ask`**</a> if you get stuck. Try to pair program  and write your own code 
###  Problem Explanation:
* You have to create a program that will convert HTML entities from string to their corresponding HTML entities. There are only a few so you can use different methods.
* Create an object to use the Lookup functionality and easily find the characters.
* Use `replace()` to replace characters with regex.
* The first argument for `replace()` is a regex that catches all the target characters and puts them into a capturing group.
* The second arguments for `replace()` is a function with the matched character as a parameter. It returns the correspondant entity from `htmlEntities`.
**Note** that if you went the regex route then you don't need to join anything, just make sure you return the whole operation or save it to a variable and then return it.
##  NOTES FOR CONTRIBUTIONS:
*  **DO NOT** add solutions that are similar to any existing solutions. If you think it is **_similar but better_**, then try to merge (or replace) the existing similar solution.
* Add an explanation of your solution.
* Categorize the solution in one of the following categories — **Basic**, **Intermediate** and **Advanced**. 