The of() static method of an array creates a new array of the elements passed to it, irregardless of type.

    
    const randomStuff = Array.of('Detroit', 1, 'Coney Dog', true);

    console.log(randomStuff);
    // ["Detroit", 1, "Coney Dog", true]