Ruby code: ```rb p /(.)(\g<1>)/.match("AB") # => #<MatchData "AB" 1:"B" 2:"B"> ``` I expected the following result: ```rb # => #<MatchData "AB" 1:"A" 2:"B"> ```