<data_type>[data width]name_of_array;
Simple Declaration
bit[8]array; // 8 element arrayVerbose Declaration
Alternate way to define the size of an array
bit[7:0]array; // 8 element arrayAssignment
array = `{2,4,12,1,4,6,2,3,9}; Accessing Value
array[0]; // will be 22D Array
bit[2][3]array;