You are given a table random\_string that has the following format: random_string schema text The text field holds a single row which contains a random string. Your task is to take the random string and split it on each vowel (a, e, i, o, u) then the resultant substrings will be contained in the output table, formatted as: output table schema results Note that the vowels should be removed. If th..