let alphabet = "abcdefghijklmnopqrstuvwxyz" function isPangram (inputPangram) { for (x of alphabet) { if (!inputPangram.includes(x)){