The most accurate reason your learning coach might give for using linear search is: Linear search is perfect if the data is not sorted.
Linear search doesn't require the data to be sorted, making it a viable option for searching through unsorted data sets. While it may be inefficient compared to other search algorithms (like binary search) when dealing with sorted data, it serves its purpose effectively for unsorted data.