JQuery selector problem, how to accurately select one of the classes of the same name

$(".questionClass>input[type="text"]").val(imgList.join(","))

now that there are four questionClass classes, I need to pinpoint the input, under a certain questionClass in this selector.

Mar.02,2021

$(".questionClass:eq(4)>input[type='text']")
Menu