When creating variables, the variable name must always start with a letter and cannot contain spaces, though numbers and underscores are allowed to be contained in it also.
Create a function which returns true if a given variable name is valid, otherwise return false.
variableValid("result") ➞ true
variableValid("odd_nums") ➞ true
variableValid("2TimesN") ➞ false