Create a function that takes a string (IPv4 address in standard dot-decimal format) and returns true if the IP is valid or false if it's not.
isValidIP("1.2.3.4") ➞ true
isValidIP("1.2.3") ➞ false
isValidIP("1.2.3.4.5") ➞ false
isValidIP("123.45.67.89") ➞ true
isValidIP("123.456.78.90") ➞ false
isValidIP("123.045.067.089") ➞ false
"123.045.067.089" should return false).