Ex18 - 19, possible errors?

Hey zed, I noticed in both of the challenges in these two exercises you’ve asked for number 3 in the fruit sections, but you’ve written number 2. I didn’t know if that was a mistake, or something I’ve missed? lol.

code:
exports.fruit = [
[‘Apples’, 12, ‘AAA’], [‘Oranges’, 1, ‘B’],
[‘Pears’, 2, ‘A’], [‘Grapes’, 14, ‘UR’]];

fruit challenge

You need to get all of these elements out of the fruit variable:

12
'AAA'
3
'Oranges'
'Grapes'
14
'Apples'

Aside from that though, I found that both of these exercises (and ex20, which I’m working through now) are EXTREMELY fun. I’m having a great time writing and messing around with the text game. The repetition is what I came for, and these three had a lot, lol.

Hmmmmmm, that vaguely sounds like something I thought I fixed, or possibly I fixed it in one exercise but not another. Can you drop me some copy-paste direct quotes and a direct link so I know exactly what we’re talking about?

https://shop.learncodethehardway.org/paid/js/ex19-data-objects/index.html

exports.fruit = [
{kind: ‘Apples’, count: 12, rating: ‘AAA’},
{kind: ‘Oranges’, count: 1, rating: ‘B’},
{kind: ‘Pears’, count: 2, rating: ‘A’},
{kind: ‘Grapes’, count: 14, rating: ‘UR’}
];

fuit challenge

You need to get all of these elements out of the fruit variable:

12
'AAA'
**3**
'Oranges'
'Grapes'
14
'Apples'

https://shop.learncodethehardway.org/paid/js/ex18-more-arrays/index.html

exports.fruit = [
[‘Apples’, 12, ‘AAA’], [‘Oranges’, 1, ‘B’],
[‘Pears’, 2, ‘A’], [‘Grapes’, 14, ‘UR’]];

fruit challenge

You need to get all of these elements out of the fruit variable:

12
'AAA'
3
'Oranges'
'Grapes'
14
'Apples'