JavaScript Crie Array com valores nulos

const arr = new Array(5).fill(null);
Coder Cuttlefish