Order the following steps of a trace of the linear search algorithm used to search for 13 in the list 14, 13, 12. Place the first step at the top.
a) Compare the current element with the target element.
b) Move to the next element.
c) If the target element is found, return its index.
d) Repeat until the end of the list is reached.