Steps of the linear search algorithm
1️⃣ Start at the first element of the array
2️⃣ Check if the current element matches the target
3️⃣ If not, move to the next element
4️⃣ Repeat steps 2-3 until the target is found or the end of the array is reached