Let's say we have the following string ```ruby 'Current year: 2021' ``` I would like to have a refactor to ```ruby current_year_number = 2021 "Current year: #{current_year_number}" ``` Note the double quote and the extract variable
Let's say we have the following string
'Current year: 2021'I would like to have a refactor to
Note the double quote and the extract variable