# ایجاد آرایه‌ای با اعداد 1 تا 9 در ابعاد 3x3
my_array <- array(data = 1:9, dim = c(3, 3))
print(my_array)