Help me in solving CLB086 problem

My issue

Creating Arrays
Arrays are used to store multiple items of the same type together.

An array is defined by specifying the type of its elements and the number of elements it will hold.

For example, the following statement declares an array numbers that can hold five integers:

int numbers[5];
You can set values at the time of declaration. For example:

int numbers[5] = {1, 2, 3, 4, 5};
Here, each element in the array numbers gets the corresponding value.

Task
Write a program which does the following:

Create an array of the first
5
5 positive integers.
Once the array is define - output Done to the console.

My code

#include <stdio.h>

int main() {
	// your code goes here
    int numbers[5];
    numbers[5] = {10,2,3,4,5};
    return 0;
}


Learning course: Data structures & Algorithms lab
Problem Link: Creating Arrays in Data structures & Algorithms lab