You are developing a text processing solution. You develop the following method. def get_key_phrases(text_analytics_client, text): response = text_analytics_client.extract_key_phrases(text, language = "en") print("keyphrases") for keyphrase in response.key_phrases: print(f' {keyphrase}') You call the method by using the following code. get_key_phrases(text_analytics_client, "the cat sat on the mat") Select Yes if the statement is True. Otherwise, select No. Statement: Output will contain the following words : the, cat, sat, on, and mat.