W3Schools Documentation Array Splice
fetch("https://jsonplaceholder.typicode.com/todos")
.then((response) => response.json())
.then((todos) => {
// Add to array
todos.splice(1, 0, { title: "test" });
console.log(todos);
// // remove from array
// todos.splice(1, 1);
// console.log(todos);
});