Convert the NFA into a DFA and then into a regular expression defining the language accepted by this NFA.
NFA

So far I have converted to a DFA (I hope) but do not know how I can convert to a regular expression.
DFA

I think the regular expression may be aU(bb)* but that is just from looking at the diagram.
The DFA looks fine, but the regular expression isn’t right. The automaton certainly accepts $(bb)^*$, but it also accepts $(bb)^*a(a\cup b)^*$: it can bounce back and forth between states $1$ and $2$ any number of times before reading an $a$, going to state $3$, and staying there no matter what else it reads. You can write this as $(bb)^*\cup(bb)^*a(a\cup b)^*$, or you can factor out $(bb)^*$ and write it as
$$(bb)^*\big(\epsilon\cup a(a\cup b)^*\big)\;,$$
where $\epsilon$ is the empty word. (Substitute $\lambda$ for $\epsilon$ if you use that for the empty word.) There is a mechanical procedure for converting a DFA to a regular expression, but this DFA is simple enough that it’s much easier to write down the regular expression by inspection.