1️⃣ Start at the first element of the list
2️⃣ Compare the current element with the target item
3️⃣ If they match, return the index
4️⃣ If they don't match, move to the next element
5️⃣ Repeat steps 2-4 until the target item is found or the end of the list is reached
6️⃣ If the target item is not found, return -1