Is there a way to have 2 "for" Loops in a "While" Loop, which are run one after

The 2. "For" Loop is skipped. The Output of the Serial Monitor is: "Taster, 1,1,1,1,1,1,1,1, 2, 4 etc"
Does anyone knows how the 2. Loop is recognized ?

Post code, not pictures.

Your second for loop is for (int j=0; j>8; j++) which is never greater than 8 to start with. Just change to for (int j=0; j<8; j++). Editted for loop to have semicolons. Too many languages, too many syntax differences, no intellisense in forums...

for (int j=0, j<8, j++) Those commas should be semicolons