Cloze questions with Interactive mode

Cloze questions with Interactive mode

by Pericles Cheng -
Number of replies: 49

Hello fellow moodlers.

I am sorry if this has been answered somewhere before but a small search did not reveal any information on this.

I have a quiz which is meant to be a way for students to learn. I create Cloze questions and insert code such as the following:

Answer1: {1:NUMERICAL:=270#Right~*#Wrong Embed video here}

Answer2: {1:NUMERICAL:=288#Right~*#Wrong Embed video here}

Answer3: {1:NUMERICAL:=252#Right~*#Wrong Embed video here}

My question is this; I want to give the students the option to try the question again until they get the right answer. I tried adaptive mode and it seems to work fine but the correct and wrong answers are not highlighted with green and red and the marks next to them. The only option you get is the answer underneath that says Partially Correct.

If I try interactive mode with multiple tries it gives me the correct coloring but no option to change the value to a new one.

Another question is how to embed the video in the part below the question instead of the popup window. The video is the same if the answer is wrong so it would be best to have a way to show the video below but only if the answer is wrong or partially correct. If the answer is correct it should simply say Correct and move on.

Thanking you in advance,

Pericles

*EDIT* I just went down a few questions and found that I need to add hints to the questions to allow new tries. That works but the colors are still not showing. Going back to Adaptive mode to try there.

*EDIT 2* Adaptive mode does not show colors at all. Only in the feedback below. So the new question is how do I show the right and wrong answers with colors so that the students will visually know the wrong answers without hovering over them?

Average of ratings: -
In reply to Pericles Cheng

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

Re: Cloze questions with Interactive mode

by Carly Born -

I can provide an appropriate use case for CLOZE.  

Foreign languages are best understood in context, and Cloze has long been a favorite exercise type in this field.  There's a wide variety of implementations, from verb charts to fill-in endings in paragraphs, or even simple subject-verb agreement.  It would VERY helpful to have the question type indicate which of the provided answers are wrong and which are right. 

In reply to Carly Born

Re: Cloze questions with Interactive mode

by Joseph Rézeau -
Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators

@Carly,

Which version of Moodle are we talking about? And which type of (sub-)questions do you have in mind?

Joseph

In reply to Joseph Rézeau

Re: Cloze questions with Interactive mode

by Carly Born -

Joseph,

We've done this with 1.9 so far, but are looking to migrate up to 2.3 this summer.  So I'm trying to figure out how to migrate all of our existing quizzes into the new engine and see what our new options are.  Most, the sub-questions are Short Answers, but there are some that are Multiple Choice.

In reply to Deleted user

Re: Cloze questions with Interactive mode

by Pericles Cheng -

The reason I am using Cloze is that I want to place multiple answers in the same question. For example, a question asks in a formula with x and y what is the value of X and what is the value of Y.

If there is another question type that can do this then I could use that instead.

In reply to Pericles Cheng

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Pericles Cheng

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

Re: Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

The fact that Moodle checks that the student has answered all parts of the question before grading anything is probably a feature. It stops the student from accidentally submitting the question when they have forgotten to fill in one of the boxes.

In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Carly Born -

But it doesn't actually tell them why it's not submitting.  It just reloads the page and acts if nothing has happened.  If you don't want to show right/wrong at this point, why not show feedback that says " you must complete all blanks to Submit this question for grading"

In reply to Carly Born

Re: Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

You are right. There should be a message like that. (Try the matching question type, you will see that it has a message like that.)

Please can someone create a bug report for this in the Moodle Tracker.

In reply to Tim Hunt

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Carly Born -

It's not a problem with Matching.  In that case, you do get a message that says "Please answer all parts of the question."

In reply to Pericles Cheng

Re: Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

At the moment, the way it seems to work is that during the quiz attempt, no colours are shown to indicate which parts of the question are right. The colours only appear after 'Submit all and finish'. The way the colours are implemented - setting the background colour on the <select> - I would not be surprised if they did not work on at least some web browsers.

Matching questions are handled the same way. So this has intentionally been implemented consistently for all question types.

The problem with showing colours in the middle of the attempt is this: (suppose we have a question What is the capital of France? with answer Paris)

  1. Student starts quiz. (input box currently has a white background)
  2. they type in the response London. (bg colour = white)
  3. they click 'Check'. At this point, your are proposing, the background colour changes to Red. That is OK.
  4. Now the student changes their response to 'Paris'. At this point the background colour is still red. This combination seems totally wrong to me, and rather confusing.
  5. Student clicks Check again. Now the colours sort themselves out.

The problem at step 4. does not arise for Interactive behaviour, because the student has to click the 'Try again' button after seeing the feedback and before changing their response. However, we still don't show colours during the attempt in this case - I think that is a desire for consistency again.

In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Pericles Cheng -

Based on your example I can see why you want the color to be white. But I think that we can solve this by making the following change.

  1. Student starts quiz. (input box currently has a white background)
  2. they type in the response London. (bg colour = white)
  3. they click 'Check'. At this point, your are proposing, the background colour changes to Red. That is OK.
  4. ***** Here the student has to click on Try Again and the colors change to white ****
  5. Now the student changes their response to 'Paris'.
  6. Student clicks Check again. Now the colours sort themselves out.

In this way the student will be able to see the correct and wrong answers when he/she checks them and then when they try again they get white boxes again. If they cannot remember which questions were wrong or right they can hover over them as it is done now.

Average of ratings: Useful (1)
In reply to Pericles Cheng

Re: Cloze questions with Interactive mode

by Joseph Rézeau -
Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators

For Cloze questions, short answer sub-questions

A.- in Interactive with multiple tries behaviour I'd prefer the following display scenario:

  1. Student starts quiz. (input box currently has a white background)
  2. they type in their answers, (on that white background)
  3. they click 'Check'. At this point:
    1. the background color of the incorrect answers changes to Red.
    2. the background color of the correct answers changes to green
  4. Here the student has to click on Try Again and
    1. the background color of the incorrect answers changes from red to white
    2. the background color of the correct answers remain green
  5. Now the students know exactly which of their answers were incorrect and need to be changed
  6. Student clicks Check again. Now the colours sort themselves out.

B. in Adaptive behaviour

  1. This is more tricky, because we do not have a step 4 as above which would "re-initialize the incorrect answers' background to white.
  2. One possible solution would be - using javascript, I expect - to automatically "re-set" the background color to white when student clicks inside an incorrect answer box with the aim to change his previous answer.

C. Some remarks about Cloze vs "other questions" in Moodle.

  1. I understand Tim's reservations when the student re-type their proposed correct answer in a box with a red background.
  2. However, I am of opinion that the advantage of clearly displaying the correctness/incorrectness of each individual short-answer sub-question answer in a Cloze question largely outweighs the drawback of not showing that information at all.
  3. Tim talks of "a desire for consistency" (between the Cloze question and the "other" questions. I disagree, because a Cloze question is very different from the other, ordinary questions, it is like a whole quiz in itself, and may (should) have its own "rules". I do realize that from a purely programming point of view this is problematic. But we must consider here the end-user's (i.e. the student's) point of view. When a student has to fill in a Cloze question consisting of a text with 20 gaps, it does not help them much to get a "Partially correct" message and no visual clue as to which of their gaps were correctly filled in or not!
  4. One may argue that students do have a way to find out which of their answers were correct and which ones were not. Hovering over the gaps will show a feedback tooltip, with the Mark for that answer and, if the question creator profided a feedback message, that message will be displayed as well in the tooltip. That is helpful, of course, but still does not have the visual impact that background coloring would provide. Also note that hovering does not work on the new mobile devices (phones and tablets).

In conclusion, I would say that there is no easy answer to these display problems, because the Close question is really different from the other questions. The best way to find out about what is really needed for the end-user (the student) would be to conduct a scientific observation of real students' behaviour when using this type of question in Moodle. Any takers?

Joseph

In reply to Joseph Rézeau

Re: Cloze questions with Interactive mode

by Justin Hunt -
Picture of Core developers Picture of Particularly helpful Moodlers Picture of Plugin developers

This is quite an issue for us. The colored/visual feedback was very easy for second language learners of high school age to use. Hovering over with a mouse to see a " Mark 0 from 1" is a clunky alternative.

The problem with Tim's line 4, was in practice never a problem, and as someone mentioned, it would be possible to clear the background color on text entry.

In a situation like this, where users have quite different needs, couldn't we just add an option at the question or the quiz level, and let the quiz creator decide the correct behaviour?

In reply to Justin Hunt

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

Re:How to display grade Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

I am inclined to say "ask me in about a month once I have got STACK quetions working well with all behaviours". STACK has exactly the same issues with multi-part questions, and I have some ideas how to solve it, but I have not written the code yet.

In reply to Tim Hunt

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Tim Hunt

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

Re: Cloze questions with Interactive mode

by Tish Kirkland -

Hi,

I'm upgrading from 1.9 to 2.5 and use a lot of Cloze questions for language learners.

In 1.9, my students could "submit" the page to get some instant feedback about their answers (see picture attached), which was great. However, it appears that in 2.5 this is not possible.

I really loved this feature. Is it possible to bring it back?

The reason is that I get email notifications when the student clicks "submit all and finish" (on 1.9), so that I can check their quiz and manually adjust their grades as necessary. This meant that utilising "submit page" was great, because I did not receive notifications every time a student checked their own answers. My quiz is set up more like a  tutorial, which is the way I like it. It is not a summative test.

I don't wish to receive notification every time a student "finishes attempt" on 2.5, even if they are just checking their answers.

Any suggestion would be greatly appreciated.

Thanks,

Tish

www.yes-ielts.com

Attachment Submit in Moodle 1.9.jpg
In reply to Tish Kirkland

Re: Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

In Moodle 1.9, whether students could submit an individual question/page, or not, was controlled by the settings Adaptive mode: Yes/No.

In Moodle 2.x it is controlled by How questions behave: Adaptive, Deferred feedback, ... other options ...

So, select adaptive behaviour.

In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Tish Kirkland -

Hi and thanks for your quick reply.

I selected "Adaptive" in (2.5), but it only shows this kind of coloured box/coloured tick feedback after the student has clicked "submit all and finish". I would like this to be available on a page-by-page basis before students "submit all and finish".

The reason is that after my students (self-enrolled, self-study, no time limits) click "submit all and finish", I receive an email notification of this and then I go through each quiz attempt and make comments and adjust grades as necessary. I would like my students to "check" (or "submit page" to check) their answers and make any adjustments necessary before they "submit all and finish", but I really don't want to receive an email every time a student uses "submit all and finish" just to check their progress in the quiz. Does that make sense?

Almost all of my questions are Cloze questions, some in tables, some in text (see example attached).

Thanks again smile

Attachment Example of Cloze question in line with text.jpg
In reply to Tish Kirkland

Re: Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

In the quiz settings, under 'Review options', what are the 'During the attempt' options set to? Try turning them all on.

In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Tish Kirkland -

I checked all "Review options" under "During the attempt", and after clicking "check" at the bottom of the page, only the marks showed up if I hovered the mouse over the answer given.

Ideally, I would prefer not to show the marks here, as my quiz isn't really marks-driven, but more about completing the cloze activity with a short answer or from the dropdown menu of a multichoice answer (cloze).

In 1.9 I really liked the background colours (green, pink, yellow) in the text boxes and the ticks (green, yellow) or crosses (red) indicating whether the answer was right or wrong. This was great for me, being visually inclined, but also for my students, who are not native English speakers.

In 2.5 I've tried pretty much all combinations of the different question behaviours and the review options, but still no luck getting feedback as I progress through the quiz.

(I like your photo at Lone Pine. I live in Brisbane.)

In reply to Tish Kirkland

Re: Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

If you want to show other forms of feedback, but not the marks, then set that combination in the review options.

There were bugs in the past, but I think they have mostly been fixed now. If you look at the screen-grabs on MDL-35370 you will see that it should mostly be working.

I know some people here user adaptive more than we do at the OU, so perhaps they can comment.

Average of ratings: Useful (1)
In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers

I just found the significant bug. It was MDL-29758, fixed in 2.3.72.4.4, that made feedback show up during the attempt properly.

In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Tish Kirkland -

Yes, that is it, exactly!

The first screenshot on that page (https://tracker.moodle.org/browse/MDL-29758, also below) demonstrates exactly what is happening to me.

Thank you so much for your time and effort in this.

Yes big grin

In reply to Tish Kirkland

Re: Cloze questions with Interactive mode

by Jean-Michel Védrine -

Hello Tish

That screenshot show the situation before the bug was fixed, but if you are using a version of Moodle after 2.3.7, 2.4.4 or 2.5 you should not see that, you should see the colors !!

Change your theme to standard and see if feedback colorrs are displayed when you click on the check button during the attempt

Average of ratings: Useful (1)
In reply to Jean-Michel Védrine

Re: Cloze questions with Interactive mode

by Jean-Michel Védrine -

For instance here is what I get on screen after clicking on the "Check" button of a cloze question that I just created copying a line of one of your previous messages

For example, mine are like this: {1:MULTICHOICE:%100%yes~%0%no} and {1:SHORTANSWER:%100%yes~%100%certainly~%50%maybe~%0%no}

cloze feedback

Average of ratings: Useful (2)
In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Jean-Michel Védrine -

Hello,

Tim is right and I am quite sure, I tested all subquestion types in cloze questions while fixing MDL-29758 and all feedbacks were displayed during attempts.So :

  1. Verify that your quiz is using adaptive behaviour (I only fixed the display of feedbacks during attempts in quizzes using adaptive behaviour, there is no feedback displayed during attempt of a quiz using interactive with multiple tries behaviour)
  2. Verify that you have all checkboxes checked in the "During attempt" column of the review options of the quiz
  3. Attempt the quiz as a student or preview the quiz as a teacher
  4. fill all subquestions of one of your cloze questions included in the quiz with responses (as explained when some subquestions are left unanswered the response to the cloze question  is considered invalid)
  5. click on the "Check" button
  6. Do you see the red or green background on each answer field and red cross and green check a the right of each one ? If yes all is working as expected, if not something is wrong with your Moodle install
  7. As you using some bootstrap based theme like clean ? if yes try switching your theme to standard and do the experience again, if feedback colors are displayed, then it was a problem with your theme (there were huge problem with quiz feedbacks and bootstrap themes in the fist versions of Moodle 2.5)
  8. Report the results of your finding here

 

Average of ratings: Useful (1)
In reply to Jean-Michel Védrine

Re: Cloze questions with Interactive mode

by Tish Kirkland -

Thank you!!!

I found my problem.

When I was demonstrating and testing it, I didn't fill in all the question components on a page.

I followed your excellent advice above, especially #4: fill all subquestions of one of your cloze questions included in the quiz with responses (as explained when some subquestions are left unanswered the response to the cloze question is considered invalid)

It seems to be working fine now. I am a very happy moodler!

I really appreciate your time and effort. This is definitely a case of human (i.e. my) error smile

Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes Yes

In reply to Tish Kirkland

Re: Cloze questions with Interactive mode

by Emma Richardson -
Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Plugin developers

You also have the option now to set remove wrong answers, and show right answers within the question itself.  I think that will give you the result you are looking for.

Average of ratings: Useful (1)
In reply to Tish Kirkland

Re: Cloze questions with Interactive mode

by Tish Kirkland -

Thank you very much for your time.

Do you think it matters if my cloze questions are shortanswer and multichoice, not numerical?

Also, mine are written with %100%, not =

For example, mine are like this: {1:MUTLICHOICE:%100%yes~%0%no} and {1:SHORTANSWER:%100%yes~%100%certainly~%50%maybe~%0%no}

Sorry if this seems like a dumb question; I'm trying to eliminate all possibilities. I've written to the guy who hosts my moodle site and does the support and code side of things to see if there is anything he can do too.

In reply to Tim Hunt

Re: Cloze questions with Interactive mode

by Carly Born -

I don't think that #4 is a problem.  I think that they should see which answers are incorrect and which are correct, that seems to be a key feature that would make this mode 'interactive'.  In fact, I think it should also work that way for all other question types, including Matching and Short Answer. 

With Cloze questions, although you can put Hints in, they cannot be specific to which answer is incorrect.  Therefore, they are less useful.  Even if you don't agree that all questions should highlight the incorrect or correct answers, I think it's the only way to make a Cloze type truly interactive.

Average of ratings: Useful (1)
In reply to Pericles Cheng

Re: Cloze questions with Interactive mode

by Bernard Boucher -

Hi Pericles,

                 I am not sure I understand clearly your problem but, to clarify the discussion, I attached a working XML file importable in Moodle XML format. It contain 1 Cloze question that embed 17 Multichoices questions in a table. 

Questions use french language but the colors are the same wink 

In Adaptive mode student get grade and visual feedback each time the Submit button ( not the Submit All and Finish ) is clicked! ( at least in Moodle 1.9.15 )

And student may change it answers any number of times go get all ther rights answers ( a sort of Darwinist approach, but that is another discussion wink  ) 

You can play with that example and see wich combinaisons of quiz options meet best yours needs!

.

I hope it may help,

 

Salutations from Québec,

 

Bernard

 

In reply to Bernard Boucher

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

Re: Cloze questions with Interactive mode

by Joseph Rézeau -
Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators

Pierre is right, the problem is with Moodle 2.1 and later versions.

Joseph

In reply to Deleted user

Re: Cloze questions with Interactive mode

by Bernard Boucher -

Hi,

     sorry to be out of sync with 1.9.15 ;-(

A valid Syllogism used in a bad situation become a Sophim wink

Thanks for yours comments,

 

Bernard

In reply to Pericles Cheng

Re: Cloze questions with Interactive mode

by Erin Reynoso -

Hi,

I know that this thread is about two years old, but I just came across the problem today and don't understand "the fix."

I am about 90% sure that I'm working in Moodle 2.4.

My students had a Quiz that actually is composed of a single Cloze question. It is set as adaptive mode The question itself works beautifully, but has a bug that was described (and apparently fixed MDL-29741). 

Summary:

1. I want my students to have multiple tries.

2. I want them to lose a percentage for each "blank" that is wrong in the CLOZE problem.

3. I want them to see hints such as "you forgot an accent, Mark 0.00 out of 1.00"

All of this works relatively well if they answer all the "blanks" in the CLOZE question. If they leave one blank, they are able to see which ones they got right or wrong if they "hover" over the blank, as well as seeing the message The submission was invalid, and has been disregarded without penalty. 

They can then fix their wrong answers, complete all the blanks, and click check and get a 100% even though they really got some wrong the first go around.

Issues:

1. I don't know any coding or developer things, so any responses should be written to such. If something like that needs to be done, I'll have to send it to the developers who don't really know too much about Moodle, but are in charge of it nonetheless.

2. My school system decides when and how we upgrade, so if that is the only way to "fix it" could you suggest a "work around" or second best method to get this to work as I'd like?

 

 

 

 

In reply to Erin Reynoso

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.
In reply to Deleted user

Re: Cloze questions with Interactive mode

by Joseph Rézeau -
Picture of Core developers Picture of Plugin developers Picture of Testers Picture of Translators

@PIerre,

I quite agree with Erin that this behaviour of the Cloze question looks strange.

In a Cloze question with several sub-questions, if a student leaves one or more blanks un-answered, they get this message "The submission was invalid, and has been disregarded without penalty." This message does not make much sense to the student. But I do not immediately see what wording would be better.

Also, as pointed out by Erin, when a student leaves one sub-question unanswered, they can hover over all the answered blanks and see which ones they got correct and which ones they got incorrect. A winning strategy for the student would be to answer all sub-questions except one, check the answered sub-questions for correctness, modify their answers until they get 100% correct.

Why not simply make the Cloze question consider that any unanswered question is incorrect, i.e. consider any unfilled-in blank as filled in with "garbage" or any unselected choice in a MCQ sub-question as having an incorrect choice selected?

I do realize that the Cloze question is a totally different type of question from the other questions in Moodle. It is not a "real" question, but a "group of sub-questions". One cannot expect it to behave at the same time as an individual question and as a whole quiz in itself, which is what Erin is wanting to do. I can only reply to Erin what you said a while ago:

Pierre Pichet
Monday, 12 March 2012, 7:03 PM
Unless you have very specific reasons to use cloze question, it is best to use individual questions where you have a more complete control of the different steps and a more detailed output.

Joseph

In reply to Deleted user

Re: Cloze questions with Interactive mode

by Erin Reynoso -

Thank you for your responses. As another person on a forum mentioned, I am really trying to make this work in CLOZE because of the context that this kind of question allows for. I have made it in the past where each blank was its own question, but then the students ask me if they have to put all of the answers in the one blank, or are otherwise confused. I may have to resort back to this though, as students are beginning to tell other students about this issue.

Here is (an abbreviated version of) the question:

Two students are discussing what people in school are like. Complete their conversation with the correct forms of the verb ser.

JULIA: —Juan {1:SHORTANSWER:%100%es #~%0%*#Juan is the subject} muy artístico, ¿no?
PACO: —Sí, dibuja muy bien. Pero no {1:SHORTANSWER:%100%es #~%0%*#Juan is the subject} deportista.
JULIA: —Verdad. Pero Marta y Vanesa {1:SHORTANSWER:%100%son#~%0%*#Marta and Vanesa are the subject} muy deportistas. Y también {1:SHORTANSWER:%100%son#~%0%*#Marta and Vanesa are the subject} trabajadoras; estudian por muchas horas todos los días.

Could it be because of the * ? I saw a post somewhere about that, but I didn't really understand what it was saying.

Thank you for your help!

Erin

In reply to Erin Reynoso

This forum post has been removed

The content of this forum post has been removed and can no longer be accessed.