diff --git a/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.arabic.md b/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.arabic.md index b861fadf5c..446ff9b768 100644 --- a/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.arabic.md +++ b/curriculum/challenges/arabic/02-javascript-algorithms-and-data-structures/basic-javascript/access-array-data-with-indexes.arabic.md @@ -7,10 +7,12 @@ localeTitle: '' --- ## Description -undefined +يمكننا الوصول إلى البيانات داخل المصفوفات باستخدام الفهارس. + +تتم كتابة فهرس المصفوفة في نفس تدرج القوس الذي تستخدمه السلاسل ، إلا أنه بدلاً من تحديد حرف ، يتم تحديد إدخال في الصفيف. مثل السلاسل ، تستخدم المصفوفات فهرسة مستندة إلى الصفر ، لذلك فإن العنصر الأول في المصفوفة هو العنصر 0. ## Instructions -undefined +قم بإنشاء variable يسمي myData وتعيينه ليساوي القيمة الأولى من myArray باستخدام bracket notation. ## Tests