131,748 views
20 votes
20 votes
Write a statement that assigns the value 10 to the first element of an array of integers named minutes.

User Dlxeon
by
3.4k points

1 Answer

15 votes
15 votes

Answer:

Step-by-step explanation:

i do not know what language you need because it has different syntax

Javascript:

const minutes = [];

minutes.push(10);

User Siddharth Garg
by
2.7k points