Which of these methods add a value to things?

things.push("raindrops");things.splice(0, 0, "whiskers");things.unshift("roses");things[things.length] = "kittens";

Perfect! We can use push(), splice() and unshift() or insert the value at the index of the array's length, 0.

Almost! We can use push(), splice() and unshift() or insert the value at the index of the array's length, 0.