From d824be8a06670de23d6c38235073d3fdde3ebdd2 Mon Sep 17 00:00:00 2001 From: XYZ Date: Sat, 28 Feb 2026 21:21:44 +0530 Subject: [PATCH] fix(curriculum): use 'concatenate' instead of 'append' in workshop-pin-extractor (#66143) --- .../blocks/workshop-pin-extractor/68592b42b9c7f27cbe123203.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/workshop-pin-extractor/68592b42b9c7f27cbe123203.md b/curriculum/challenges/english/blocks/workshop-pin-extractor/68592b42b9c7f27cbe123203.md index b104703661c..5a1e8e79e15 100644 --- a/curriculum/challenges/english/blocks/workshop-pin-extractor/68592b42b9c7f27cbe123203.md +++ b/curriculum/challenges/english/blocks/workshop-pin-extractor/68592b42b9c7f27cbe123203.md @@ -9,7 +9,7 @@ dashedName: step-15 The third line of the poem is missing a third word, so the pin is shorter than expected. -Add an `else` clause that appends a `'0'` to `secret_code` when there are not enough words, so that all lines of the poem are used to find digits. +Add an `else` clause that concatenates a `'0'` to `secret_code` when there are not enough words, so that all lines of the poem are used to find digits. # --hints--