diff --git a/index.bs b/index.bs
index 14da50cc..921b2ead 100644
--- a/index.bs
+++ b/index.bs
@@ -12328,8 +12328,8 @@ then there must exist a property with the following characteristics:
of [=interface=] |definition| on |target|, given [=realm=] |realm|, run the following steps:
1. If |definition| has an [=indexed property getter=], then:
- 1. Perform [$CreateMethodProperty$](|target|, {{@@iterator}},
- {{%Array.prototype.values%}}).
+ 1. Perform [$DefineMethodProperty$](|target|, {{@@iterator}},
+ {{%Array.prototype.values%}}, false).
1. If |definition| has a [=value iterator=], then:
1. Perform [=!=] [$CreateDataPropertyOrThrow$](|target|, "entries
",
{{%Array.prototype.entries%}}).
@@ -12354,7 +12354,7 @@ then there must exist a property with the following characteristics:
1. Let |F| be [$CreateBuiltinFunction$](|steps|, « », |realm|).
1. Perform [$SetFunctionName$](|F|, "entries
").
1. Perform [$SetFunctionLength$](|F|, 0).
- 1. Perform [$CreateMethodProperty$](|target|, {{@@iterator}}, |F|).
+ 1. Perform [$DefineMethodProperty$](|target|, {{@@iterator}}, |F|, false).
1. Perform [=!=] [$CreateDataPropertyOrThrow$](|target|, "entries
", |F|).
1. Define the keys
method:
1. Let |steps| be the following series of steps:
@@ -12546,7 +12546,7 @@ and the string " Iterator
".
1. Let |F| be [$CreateBuiltinFunction$](|steps|, « », |realm|).
1. Perform [$SetFunctionName$](|F|, "entries
").
1. Perform [$SetFunctionLength$](|F|, 0).
- 1. Perform [$CreateMethodProperty$](|target|, {{@@asyncIterator}}, |F|).
+ 1. Perform [$DefineMethodProperty$](|target|, {{@@asyncIterator}}, |F|, false).
1. Perform [=!=] [$CreateDataPropertyOrThrow$](|target|, "entries
", |F|).
1. If |definition| has a [=pair asynchronously iterable declaration=], then define the
keys
method:
@@ -12596,7 +12596,7 @@ and the string " Iterator
".
1. Perform [$SetFunctionLength$](|F|, 0).
1. Perform [=!=] [$CreateDataPropertyOrThrow$](|target|, "values
", |F|).
1. If |definition| has a [=value asynchronously iterable declaration=], then perform [=!=]
- [$CreateMethodProperty$](|target|, {{@@asyncIterator}}, |F|).
+ [$DefineMethodProperty$](|target|, {{@@asyncIterator}}, |F|, false).