Finding the trouble with the while loop

while(k = true) {

This sets k to true. I assume that you meant

while(k == true) {
1 Like