Write a function that takes an integer and returns a string with the given number of "a"s in Edabit.
"a"
howManyTimes(5) ➞ "Edaaaaabit" howManyTimes(0) ➞ "Edbit" howManyTimes(12) ➞ "Edaaaaaaaaaaaabit"