JS
challenger
Home
JavaScript Basics
arrays
Replace Array Element at Index
Replace Array Element at Index
You are given an array and must replace the element at a specific index with a new value. Complete the function so that it returns the updated array.
Premium
reset
function greet(name) { return `Hello, ${name}!`; } console.log(greet("Erik"));
JavaScript
Run Code
Console