For example would this work? ```js const script = pipWindow.document.createElement("script"); script.textContent = "document.body.append('hello');"; pipWindow.document.body.append(script); ```
For example would this work?