What is the percentage you can score on a test, which single-handedly brings down the class average by 5%? Given an array of your classmates scores, create a function that returns the answer. Round to the nearest percent.
takeDownAverage(["95%", "83%", "90%", "87%", "88%", "93%"]) ➞ "54%"
takeDownAverage(["10%"]) ➞ "0%"
takeDownAverage(["53%", "79%"]) ➞ "51%"