Another regular expression operator is or, written as a vertical bar: |.
For example aa|bb matches "aa" and "bb" but not "ab"
Construct a finite state machine that accepts the language described by aa|bb