String Manipulation Methods

What common string transformation is being performed?
const text = 'The Quick Brown Fox';
const result = text.toLowerCase().split(' ').join('-');
Next Question (16/20)