init 1090 python: def replace_text(t1): t1 = t1.replace("Meet Joy and her daughter, Katie", "This is you mother and your sister") t1 = t1.replace("Joy has had a violent argument with her husband.", "Your mother had a violent argument with your father.") t1 = t1.replace("Joy", "Mom") return t1 config.replace_text = replace_text