diff --git a/src/index-list.md b/src/index-list.md
index cf516b40..fc949f76 100644
--- a/src/index-list.md
+++ b/src/index-list.md
@@ -44,10 +44,14 @@
## A
-| 名称 | 关键字 | 简介 |
-| ---- | ------ | ------------- |
-| [] | | |
-| A | KWA | AIntroduction |
+| 名称 | 关键字 | 简介 |
+| ------------- | -------- | ---------------------------------------------------------------------------------------------------------------------- |
+| [array 数组] | 数组 | 长度固定
元素必须有相同的类型
依次线性排列
可以通过索引访问其中的元素
`let a: [i32; 5] = [1, 2, 3, 4, 5];` |
+| [array slice] | 数组切片 | `let slice: &[i32] = &a[1..3];` |
+| A | KWA | AIntroduction |
+
+[array 数组]: https://course.rs/basic/compound-type/array.html
+[array slice]: https://course.rs/basic/compound-type/array.html#数组切片
[back](#head)