Fill in the code to check if the text passed has at least 2 groups of alphanumeric characters (including letters, numbers, and underscores) separated by one or more whitespace characters. code example
Example: regex to identify numeric and alphanumeric
"^[a-zA-Z0-9_]*$"