String Manipulation Methods

What modern JavaScript feature is being used to convert the string to an array?
const str = 'Hello World';
const chars = [...str];
Next Question (11/20)