Verification Failed Test Cases for Acme Login

I am working through the create test cases exercise for this course in Academy RPA Testing with Studio Course | UiPath Academy. I am trying to verify text matches and they look the same to me, however the verification is failing. I have tried using trim for the text, but did not have success there either.

Hey @Michaela_Leigh
The texts look identical, but the issue is most likely caused by hidden characters.
Try using Trim to remove extra whitespace or even combine it with Replace to remove other invisible characters, something like this:
Result.Trim.Replace(vbCrLf, "").Replace(vbTab, "")
You can handle this using either the Verify Control Attribute or Verify Expression activity - but in both cases, you should clean the result using an Assign activity: