susanBuck / psy1903-forum

0 stars 0 forks source link

Markdown practice post... #2

Closed susanBuck closed 2 months ago

susanBuck commented 7 months ago

Post your solution to the Markdown practice exercise here... (Details in this exercise can be found in the Week 1 Task Set)

AmberSimons1 commented 2 months ago

My name is Amber and I am from Needville, TX!

Three books I've enjoyed recently are

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
JuliusNagin commented 2 months ago

My name is Julius and I am from Cambridge, MA.

Three books I've enjoyed recently are:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
joanne-ji commented 2 months ago

Hi! My name is Jae, and I'm from Leonia, NJ.

Three books that I've enjoyed recently are:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
katiearrambide commented 2 months ago

Hi! My name is Katie Arrambide and I am from St. Charles, Illinois

3 books I've enjoyed recently are:


function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
sylviatraw commented 2 months ago

My name is Sylvia and I am from Youngstown, OH

Three books I've enjoyed recently are:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
stephaniezaragoza18 commented 2 months ago

My name is Stephanie and I am from Aiken, South Carolina.

Three books I have enjoyed recently are:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
ashkim1 commented 2 months ago

My name is Ash and I am from Ellicott City, MD.

Here are three books I've enjoyed recently:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
kaya-vadhan commented 2 months ago

I'm Kaya from Brookline, Massachusetts.

I've enjoyed reading the books:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
seangallagher26 commented 2 months ago

Hi! My name is Sean and I'm from Burlington, MA

Three books I've enjoyed recently are:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
kjsauce commented 2 months ago

I'm Kayla and I'm from El Paso, Texas. Three books I've enjoyed recently are:


function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
gbenkelman commented 2 months ago

My name is Grace and I'm from Whitefish, Montana

I've enjoyed these books recently!


function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
nycollycarvalho commented 2 months ago

My name is Nycolly and I'm from Porto Alegre, Brazil.

Here are three books I've enjoyed recently:

function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
wendycv02 commented 2 months ago

My name is Wendy and I am originally from El Salvador:

Here are three books I've enjoyed:


function generateRandomLetters(length) {
    const alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
    let result = '';
    for (let i = 0; i < length; i++) {
        const randomIndex = Math.floor(Math.random() * alphabet.length);
        result += alphabet[randomIndex];
    }
    return result;
}

document.write(generateRandomLetters(5));
}