Given an number, return a string which contains varying amounts of the word 'MEGA' depending on the given number's order of magnitude.
"not a mega milestone"."MEGA milestone"."MEGA" to the start of the string.See the examples below for further clarification!
howMuchMega(54) ➞ "not a mega milestone"
howMuchMega(143) ➞ "MEGA milestone"
howMuchMega(1000) ➞ "MEGA MEGA milestone"
howMuchMega(9999.9) ➞ "MEGA MEGA milestone"
howMuchMega(10000) ➞ "MEGA MEGA MEGA milestone"