Disemvoweling
Create a function that removes all vowels and spaces from a string. The function should then return the result as an object with two keys "consonants" and "vowels". Example const input = "Pickle Rick!" function disemvoweling(string){ } disemvoweling(input) // Output: // { // consonants: "pcklrck!", // vowels: "iei" // }