Zip codes consist of 5 consecutive digits. Given a string, write a function to determine whether the input is a valid zip code. A valid zip code is as follows:
IsValid("59001") ➞ true
IsValid("853a7") ➞ false
IsValid("732 32") ➞ false
IsValid("393939") ➞ falseN/A