
The Most Wanted Letter

You are given a text, which contains different English letters and punctuation symbols.
You should find the most frequent letter in the text. The letter returned must be in lower case.
While checking for the most wanted letter, casing does not matter, so for the purpose of your search,
"A" == "a".
Make sure you do not count punctuation symbols, digits and whitespaces, only letters.
If you have two or more letters with the same frequency, then return the letter which comes first in the Latin alphabet. For example -- "one" contains "o", "n", "e" only once for each, thus we choose "e".
Input: A text for analysis as a string (string).
Output: The most frequent letter in lower case as a string (string).
Examples:
assert.strictEqual(mostWanted("Hello World!"), "l"); assert.strictEqual(mostWanted("How do you do?"), "o"); assert.strictEqual(mostWanted("One"), "e"); assert.strictEqual(mostWanted("Oops!"), "o");
How it is used: For most decryption tasks you need to know the frequency of occurrence for various letters in a section of text. For example: we can easily crack a simple addition or substitution cipher if we know the frequency in which letters appear. This is interesting stuff for language experts!
Precondition:
A text contains only ASCII symbols.
0 < len(text) ≤ 105