Ruby - Regular Expressions
Fix the error in this Ruby code snippet:
data = 'abc123' match = data.match(/(abc)(\d+)/) puts match[0]The goal is to print only the digits.
