Here's the completed code:
```
# Find the script notation at the beginning of the fourth sentence and print it
pattern2 = r"\b\w+\s*:"
print(re.match(pattern2, sentences[3]))
```
The code defines a regular expression called `pattern2` that matches any word characters followed by optional spaces and a colon. It then uses `re.match()` with `pattern2` and