# Stranding: arr ← 1‿2‿'a'‿+‿5 # General List Syntax: arr1 ← ⟨1,2,'a',+,5⟩ •Show arr ≡ arr1 # both arrays are the same. •Show arr •Show arr1 # Taking nth element(⊑): •Show 3⊑arr # Modifying the array(↩): arr ↩ "hello"⌾(4⊸⊑) arr