The correct response is: It is difficult to traverse.
While linked lists have advantages like dynamic size and ease of insertion/deletion, they can be harder to traverse compared to arrays, which allow direct access to elements via indexing. In a linked list, you must start from the head and follow pointers to reach the desired node, making traversal less efficient.