This is the output created when I input exactly what the second hint tells me to do.

To pass the level, I’m assuming it is looking for the code explicitly given in the hint (below). As shown in the screenshot above, it states “the whole loop should look like this”. However, this code does not generate the desired output (i.e. the non-truncated major names). My code above, using IFS, with or without quotations around the comma, generate the desired output, but does not pass the exercise.
cat courses.csv | while read MAJOR COURSE
do
echo $MAJOR
done